結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー maspy
提出日時 2020-01-28 13:05:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 13:08:46
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

D = int(readline())
C = ''.join(read().decode().split())

answer = 0
for n in range(15):
    for i in range(14):
        if i + n > 14:
            break
        x = C[i:i+n].count('x')
        if x <= D:
            answer = n

print(answer)
0