結果

問題 No.672 最長AB列
ユーザー turner18_jpturner18_jp
提出日時 2018-04-30 11:43:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,356 KB
最終ジャッジ日時 2024-06-27 23:50:04
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,368 KB
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 29 ms
10,368 KB
testcase_05 WA -
testcase_06 AC 30 ms
10,368 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,240 KB
testcase_09 AC 71 ms
12,352 KB
testcase_10 AC 71 ms
12,288 KB
testcase_11 AC 69 ms
12,288 KB
testcase_12 AC 78 ms
12,352 KB
testcase_13 WA -
testcase_14 AC 73 ms
12,220 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
12,288 KB
testcase_18 AC 97 ms
12,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
a, b = 0, 0
ans = 0
for c in s:
  if c == "A":
    a += 1
  elif c == "B":
    b += 1
  if a == b and a+b > ans:
    ans = a+b

print(ans)
0