結果

問題 No.2298 yukicounter
ユーザー 👑 p-adicp-adic
提出日時 2023-05-14 12:02:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 106 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 64,800 KB
最終ジャッジ日時 2024-05-07 09:48:59
合計ジャッジ時間 5,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
51,884 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 50 ms
62,464 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 43 ms
59,520 KB
testcase_06 AC 54 ms
63,872 KB
testcase_07 AC 49 ms
60,580 KB
testcase_08 AC 42 ms
58,904 KB
testcase_09 AC 43 ms
60,600 KB
testcase_10 AC 42 ms
60,220 KB
testcase_11 AC 43 ms
60,308 KB
testcase_12 AC 46 ms
60,636 KB
testcase_13 AC 49 ms
62,024 KB
testcase_14 AC 48 ms
61,260 KB
testcase_15 AC 41 ms
59,044 KB
testcase_16 AC 44 ms
60,704 KB
testcase_17 AC 45 ms
60,960 KB
testcase_18 AC 37 ms
52,620 KB
testcase_19 AC 36 ms
52,644 KB
testcase_20 AC 36 ms
52,636 KB
testcase_21 AC 36 ms
52,808 KB
testcase_22 TLE -
testcase_23 AC 54 ms
60,696 KB
testcase_24 AC 103 ms
64,800 KB
testcase_25 AC 68 ms
62,608 KB
testcase_26 AC 51 ms
61,224 KB
testcase_27 AC 91 ms
63,908 KB
testcase_28 AC 51 ms
60,492 KB
testcase_29 AC 50 ms
60,684 KB
testcase_30 AC 44 ms
60,496 KB
testcase_31 AC 46 ms
60,092 KB
testcase_32 AC 50 ms
61,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S,K=input(),0
for i in range(len(S)-8):
	c=0
	while S[i:i+9]=="yukicoder":c,i=c+1,i+9
	K=max(c,K)
print(K)
0