結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ABKZABKZ
提出日時 2021-06-22 17:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 91 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 64,392 KB
最終ジャッジ日時 2024-06-23 14:25:18
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,700 KB
testcase_01 AC 53 ms
64,240 KB
testcase_02 AC 53 ms
63,164 KB
testcase_03 AC 53 ms
63,856 KB
testcase_04 AC 53 ms
63,656 KB
testcase_05 AC 53 ms
63,116 KB
testcase_06 AC 52 ms
63,684 KB
testcase_07 AC 54 ms
62,980 KB
testcase_08 AC 54 ms
63,364 KB
testcase_09 AC 55 ms
63,852 KB
testcase_10 AC 53 ms
63,240 KB
testcase_11 AC 54 ms
63,772 KB
testcase_12 AC 53 ms
62,908 KB
testcase_13 AC 54 ms
62,896 KB
testcase_14 AC 52 ms
63,412 KB
testcase_15 AC 53 ms
63,676 KB
testcase_16 AC 52 ms
63,236 KB
testcase_17 AC 53 ms
64,096 KB
testcase_18 AC 54 ms
63,728 KB
testcase_19 AC 52 ms
63,904 KB
testcase_20 AC 52 ms
63,144 KB
testcase_21 AC 53 ms
63,180 KB
testcase_22 AC 54 ms
63,176 KB
testcase_23 AC 53 ms
63,548 KB
testcase_24 AC 52 ms
63,876 KB
testcase_25 AC 53 ms
63,448 KB
testcase_26 AC 53 ms
62,640 KB
testcase_27 AC 54 ms
64,392 KB
testcase_28 AC 54 ms
63,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

C1 = input()
C2 = input()

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