• Educational Codeforces Round 26 A


    Text Volume

    题意:

    思路:模拟

    AC代码:

    #include "iostream"
    #include "iomanip"
    #include "string.h"
    #include "stack"
    #include "queue"
    #include "string"
    #include "vector"
    #include "set"
    #include "map"
    #include "algorithm"
    #include "stdio.h"
    #include "math.h"
    #pragma comment(linker, "/STACK:102400000,102400000")
    #define bug(x) cout<<x<<" "<<"UUUUU"<<endl;
    #define mem(a,x) memset(a,x,sizeof(a))
    #define step(x) fixed<< setprecision(x)<<
    #define mp(x,y) make_pair(x,y)
    #define pb(x) push_back(x)
    #define ll long long
    #define endl ("
    ")
    #define ft first
    #define sd second
    #define lrt (rt<<1)
    #define rrt (rt<<1|1)
    using namespace std;
    const long long INF = 1e18+1LL;
    const int inf = 1e9+1e8;
    const int N=1e5+100;
    const ll mod=1e9+7;
    
    char s[205];
    int n;
    int main(){
        //ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
        cin>>n; getchar();
        for(int i=1; i<=n; ++i){
            s[i]=getchar();
        }
        int ans=0,t=0;
        for(int i=1; i<=n; ++i){
            if(s[i]==' '){
                t=0;
            }
            else if(s[i]>='A' && s[i]<='Z'){
                t++;
                ans=max(ans,t);
            }
        }
        cout<<ans<<endl;
        return 0;
    }
  • 相关阅读:
    TCP四次握手断开连接(十一)
    Go-函数
    Go-数据类型以及变量,常量
    GO语言介绍以及开发环境配置
    Socket与WebSocket以及http与https重新总结
    希尔排序
    第19课
    第18课
    外传篇3 动态内存申请的结果
    外传篇2 函数的异常规格说明
  • 原文地址:https://www.cnblogs.com/max88888888/p/7365062.html
Copyright © 2020-2023  润新知