結果
問題 | No.672 最長AB列 |
ユーザー | けむけむ |
提出日時 | 2021-09-05 15:12:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 25,088 KB |
最終ジャッジ日時 | 2024-12-21 18:06:09 |
合計ジャッジ時間 | 22,451 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
15,872 KB |
testcase_01 | AC | 26 ms
23,040 KB |
testcase_02 | AC | 26 ms
15,872 KB |
testcase_03 | AC | 28 ms
23,168 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 26 ms
17,444 KB |
testcase_07 | AC | 27 ms
15,872 KB |
testcase_08 | RE | - |
testcase_09 | AC | 147 ms
25,088 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
ソースコード
def AB(S): oriS = S S = list(S) N = len(S) ans = 0 i = 0 while i <= N - 2: patS = S[i:i+2] if (patS == ['A', 'B']) or (patS == ['B', 'A']): S.pop(i) S.pop(i) N -= 2 else: i += 1 resS = '' for j in range(len(S)): resS += S[j] resN = len(resS) oriN = len(oriS) if (oriS[0] == resS[0]) or (oriS[-1] == resS[0]): if (oriS[:resN] == resS) or (oriS[oriN-resN:] == resS): ans = oriN - resN else: splS = resS[0] + resS + resS[0] splitted_S = oriS.split(splS) len1 = len(splitted_S[0]) len2 = len(splitted_S[1]) len_max = max([len1, len2]) ans = len_max + 1 return ans def main(): S = input() print(AB(S)) if __name__ == '__main__': main()