結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ABKZABKZ
提出日時 2021-06-22 17:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 91 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 86,200 KB
実行使用メモリ 79,552 KB
最終ジャッジ日時 2023-09-05 18:58:34
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
79,264 KB
testcase_01 AC 156 ms
79,216 KB
testcase_02 AC 150 ms
79,364 KB
testcase_03 AC 152 ms
79,500 KB
testcase_04 AC 156 ms
79,260 KB
testcase_05 AC 155 ms
79,472 KB
testcase_06 AC 153 ms
79,264 KB
testcase_07 AC 154 ms
79,248 KB
testcase_08 AC 153 ms
79,552 KB
testcase_09 AC 153 ms
79,252 KB
testcase_10 AC 152 ms
79,312 KB
testcase_11 AC 148 ms
79,216 KB
testcase_12 AC 150 ms
79,224 KB
testcase_13 AC 149 ms
79,380 KB
testcase_14 AC 151 ms
79,360 KB
testcase_15 AC 150 ms
79,448 KB
testcase_16 AC 149 ms
79,220 KB
testcase_17 AC 151 ms
79,332 KB
testcase_18 AC 151 ms
79,440 KB
testcase_19 AC 151 ms
79,440 KB
testcase_20 AC 153 ms
79,248 KB
testcase_21 AC 150 ms
79,368 KB
testcase_22 AC 150 ms
79,440 KB
testcase_23 AC 148 ms
79,392 KB
testcase_24 AC 150 ms
79,472 KB
testcase_25 AC 151 ms
79,496 KB
testcase_26 AC 149 ms
79,356 KB
testcase_27 AC 148 ms
79,392 KB
testcase_28 AC 151 ms
79,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

C1 = input()
C2 = input()

print(max([len(s) for s in re.split("x+", C1 + C2)]))
0