結果

問題 No.2298 yukicounter
ユーザー june19312june19312
提出日時 2023-05-19 16:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 58,684 KB
最終ジャッジ日時 2024-05-10 02:59:35
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 39 ms
52,520 KB
testcase_02 AC 39 ms
53,084 KB
testcase_03 AC 43 ms
56,264 KB
testcase_04 AC 40 ms
53,448 KB
testcase_05 AC 39 ms
52,368 KB
testcase_06 AC 46 ms
58,684 KB
testcase_07 AC 40 ms
54,516 KB
testcase_08 AC 38 ms
52,792 KB
testcase_09 AC 39 ms
53,680 KB
testcase_10 AC 38 ms
52,380 KB
testcase_11 AC 39 ms
54,196 KB
testcase_12 AC 39 ms
54,068 KB
testcase_13 AC 40 ms
53,260 KB
testcase_14 AC 40 ms
53,820 KB
testcase_15 AC 38 ms
52,696 KB
testcase_16 AC 38 ms
53,024 KB
testcase_17 AC 39 ms
53,816 KB
testcase_18 AC 38 ms
52,900 KB
testcase_19 AC 38 ms
53,368 KB
testcase_20 AC 38 ms
51,904 KB
testcase_21 AC 38 ms
52,176 KB
testcase_22 AC 48 ms
56,080 KB
testcase_23 AC 39 ms
53,392 KB
testcase_24 AC 50 ms
58,224 KB
testcase_25 AC 42 ms
54,796 KB
testcase_26 AC 39 ms
53,480 KB
testcase_27 AC 47 ms
57,636 KB
testcase_28 AC 39 ms
53,432 KB
testcase_29 AC 39 ms
53,128 KB
testcase_30 AC 38 ms
52,212 KB
testcase_31 AC 38 ms
53,220 KB
testcase_32 AC 39 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

ok = 0
ng = len(S)//9+1

while abs(ok-ng) > 1:
    mid = abs((ok+ng)//2)
    
    tmp = "yukicoder"*mid
    
    if tmp in S:
        ok = mid
    else:
        ng = mid

print(ok)
0