結果
| 問題 |
No.204 ゴールデン・ウィーク(2)
|
| コンテスト | |
| ユーザー |
sugar_sentan
|
| 提出日時 | 2019-12-10 19:06:58 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 471 bytes |
| コンパイル時間 | 89 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-24 02:08:25 |
| 合計ジャッジ時間 | 2,788 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 WA * 15 |
ソースコード
D = int(input())
# xが平日, oが休日
s = str(input())
s += str(input())
ans = 0
# xをoにしたら飛ばすようにする
for i in range(14):
cnt = i
tmp = 0
hoge = D
while 14 > cnt:
if s[cnt] == "x":
if hoge <= 0:
break
else:
cnt += hoge
tmp += hoge
hoge = 0
else:
tmp += 1
cnt += 1
ans = max(ans, tmp)
print(ans)
sugar_sentan