結果
問題 | No.672 最長AB列 |
ユーザー | tails1434 |
提出日時 | 2020-01-22 21:40:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 82,524 KB |
実行使用メモリ | 85,748 KB |
最終ジャッジ日時 | 2024-07-16 02:30:04 |
合計ジャッジ時間 | 2,266 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
51,456 KB |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 39 ms
51,456 KB |
testcase_04 | AC | 38 ms
51,456 KB |
testcase_05 | AC | 37 ms
52,096 KB |
testcase_06 | AC | 37 ms
51,712 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 49 ms
64,000 KB |
testcase_10 | AC | 49 ms
64,000 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 62 ms
79,232 KB |
testcase_18 | WA | - |
ソースコード
def runlegth(S): cnt = 1 d = [] for i in range(len(S)-1): if S[i] == S[i+1]: cnt += 1 else: d.append(cnt) cnt = 1 d.append(cnt) return d def main(): S = input() D = runlegth(S) first = 0 second = 0 ans = 0 for i in range(len(D)): if i % 2 == 0: first += D[i] ans = max(ans, min(first,second)) if D[i] >= second: second = 0 else: second += D[i] ans = max(ans, min(first,second)) if D[i] >= first: first = 0 print(ans * 2) if __name__ == "__main__": main()