結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー miya145592miya145592
提出日時 2023-05-03 18:24:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 97 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 86,916 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2023-08-14 02:08:48
合計ジャッジ時間 3,422 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
71,516 KB
testcase_01 AC 57 ms
71,428 KB
testcase_02 AC 58 ms
71,292 KB
testcase_03 AC 57 ms
71,040 KB
testcase_04 AC 57 ms
71,512 KB
testcase_05 AC 57 ms
71,532 KB
testcase_06 AC 57 ms
71,192 KB
testcase_07 AC 57 ms
71,176 KB
testcase_08 AC 58 ms
71,184 KB
testcase_09 AC 57 ms
71,408 KB
testcase_10 AC 57 ms
71,176 KB
testcase_11 AC 56 ms
71,424 KB
testcase_12 AC 57 ms
71,260 KB
testcase_13 AC 56 ms
71,448 KB
testcase_14 AC 58 ms
71,056 KB
testcase_15 AC 57 ms
71,436 KB
testcase_16 AC 59 ms
71,180 KB
testcase_17 AC 57 ms
71,316 KB
testcase_18 AC 56 ms
71,152 KB
testcase_19 AC 57 ms
71,152 KB
testcase_20 AC 57 ms
71,268 KB
testcase_21 AC 58 ms
71,152 KB
testcase_22 AC 56 ms
71,372 KB
testcase_23 AC 57 ms
71,436 KB
testcase_24 AC 56 ms
71,332 KB
testcase_25 AC 57 ms
71,424 KB
testcase_26 AC 57 ms
71,052 KB
testcase_27 AC 58 ms
71,556 KB
testcase_28 AC 58 ms
71,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C = input()+input()
l = C.split("x")
ans = 0
for ll in l:
    ans = max(ans, len(ll))
print(ans)
0