結果
| 問題 | No.2298 yukicounter |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-12 21:37:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 131 bytes |
| 記録 | |
| コンパイル時間 | 356 ms |
| コンパイル使用メモリ | 85,332 KB |
| 実行使用メモリ | 79,252 KB |
| 最終ジャッジ日時 | 2026-05-22 17:16:10 |
| 合計ジャッジ時間 | 2,603 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 3 WA * 27 |
ソースコード
S = input()
l = S.split("yukicoder")
ans = 0
now = 0
for x in l:
if x:
now = 0
else:
now += 1
ans = max(ans,now)
print(ans)