結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー ntudantuda
提出日時 2024-05-30 21:39:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-05-30 21:39:58
合計ジャッジ時間 4,596 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 42 ms
52,592 KB
testcase_05 AC 42 ms
52,276 KB
testcase_06 AC 41 ms
52,068 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 42 ms
53,004 KB
testcase_30 AC 41 ms
52,620 KB
testcase_31 AC 41 ms
52,344 KB
testcase_32 AC 42 ms
53,488 KB
testcase_33 AC 41 ms
53,564 KB
testcase_34 AC 43 ms
52,228 KB
testcase_35 AC 41 ms
52,980 KB
testcase_36 AC 43 ms
52,936 KB
testcase_37 AC 42 ms
53,232 KB
testcase_38 AC 41 ms
53,088 KB
testcase_39 AC 43 ms
52,748 KB
testcase_40 AC 42 ms
52,956 KB
testcase_41 WA -
testcase_42 AC 43 ms
52,440 KB
testcase_43 AC 41 ms
52,420 KB
testcase_44 AC 42 ms
52,408 KB
testcase_45 AC 42 ms
52,492 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
C = input()
C = C + input()
N = list(range(14))
for i, c in enumerate(C, start=14):
    if c == "x":
        N.append(i)
N += list(range(28,52))
ans = 0
for i in range(len(N) - D - 1):
    ans = max(ans, N[i + D + 1] - N[i] - 1)
print(ans)
0