結果
問題 |
No.341 沈黙の期間
|
ユーザー |
|
提出日時 | 2021-12-02 04:18:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 244 bytes |
コンパイル時間 | 1,501 ms |
コンパイル使用メモリ | 167,716 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 01:47:01 |
合計ジャッジ時間 | 2,125 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ string s,t="…"; cin>>s; int ans=0,cnt=0; for(int i=0;i<s.size();i+=t.size()){ if(s[i]==t[0])ans=max(ans,++cnt); else cnt=0; } cout<<ans<<endl; }