結果
| 問題 |
No.341 沈黙の期間
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-06 13:29:52 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 246 bytes |
| コンパイル時間 | 1,633 ms |
| コンパイル使用メモリ | 194,880 KB |
| 最終ジャッジ日時 | 2025-02-09 05:46:06 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
string S;
cin>>S;
S=S+"P";
int an=0,k=0;
for(int i=0;i<S.size();i++){
if(S[i]==-30&&S[i+1]==-128&&S[i+2]==-90)k++,i+=2;
else an=max(an,k),k=0;
}cout<<an<<endl;
}