結果
| 問題 |
No.2298 yukicounter
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-12 21:37:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 131 bytes |
| コンパイル時間 | 387 ms |
| コンパイル使用メモリ | 82,132 KB |
| 実行使用メモリ | 79,536 KB |
| 最終ジャッジ日時 | 2024-11-28 17:37:10 |
| 合計ジャッジ時間 | 2,914 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)