結果

問題 No.2298 yukicounter
ユーザー ShirotsumeShirotsume
提出日時 2023-03-13 14:56:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 253,648 KB
最終ジャッジ日時 2023-10-18 13:13:46
合計ジャッジ時間 5,093 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,828 KB
testcase_01 AC 38 ms
53,480 KB
testcase_02 AC 38 ms
53,480 KB
testcase_03 AC 42 ms
56,680 KB
testcase_04 AC 39 ms
53,900 KB
testcase_05 AC 38 ms
53,480 KB
testcase_06 AC 43 ms
57,240 KB
testcase_07 AC 40 ms
53,868 KB
testcase_08 AC 38 ms
53,480 KB
testcase_09 AC 39 ms
53,480 KB
testcase_10 AC 38 ms
53,480 KB
testcase_11 AC 39 ms
53,768 KB
testcase_12 AC 40 ms
53,756 KB
testcase_13 AC 39 ms
53,820 KB
testcase_14 AC 40 ms
53,836 KB
testcase_15 AC 39 ms
53,480 KB
testcase_16 AC 39 ms
53,480 KB
testcase_17 AC 38 ms
53,480 KB
testcase_18 AC 38 ms
53,480 KB
testcase_19 AC 38 ms
53,480 KB
testcase_20 AC 38 ms
53,480 KB
testcase_21 AC 38 ms
53,480 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2**63-1
mod = 998244353

s = input()

y = "yukicoder"
t = y
now = 0


for i in range(len(s)):
    if t in s:
        now += 1
        t += y
    else:
        break
print(now)
        
0