結果
問題 | No.2298 yukicounter |
ユーザー |
![]() |
提出日時 | 2023-05-12 22:34:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 617 ms / 2,000 ms |
コード長 | 235 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-11-28 19:08:19 |
合計ジャッジ時間 | 4,321 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
import sys input = sys.stdin.readline S=input().strip() x="yukicoder" ANS=0 ind=0 now=0 while ind<len(S): if S[ind:ind+9]==x: now+=1 ind+=9 else: now=0 ind+=1 ANS=max(ANS,now) print(ANS)