結果
問題 | No.672 最長AB列 |
ユーザー | silopy |
提出日時 | 2019-01-26 15:40:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 580 ms |
コンパイル使用メモリ | 61,884 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 05:11:14 |
合計ジャッジ時間 | 1,281 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 7 ms
6,940 KB |
testcase_10 | AC | 8 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
6,940 KB |
testcase_18 | WA | - |
ソースコード
#include<iostream> #include<algorithm> #include<cmath> using namespace std; int main() { string S; cin >> S; int ans=0; int a[200010]={}; int b[200010]={}; int acnt=0; if(S[0]=='A')a[0]=1; if(S[0]=='B')b[0]=1; for(int i=1;i<S.size();i++) { //a a[i]=a[i-1]; if(S[i]=='A') { if(S[i-1]=='A')a[i]++; else a[i]=1; } //b b[i]=b[i-1]; if(S[i]=='B') { if(S[i-1]=='B')b[i]++; else b[i]=1; } ans=max(ans,min(a[i],b[i] )); } cout << ans*2 << endl; return 0; }