結果

問題 No.2298 yukicounter
ユーザー ShirotsumeShirotsume
提出日時 2023-03-13 15:04:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,384 KB
最終ジャッジ日時 2024-09-18 09:32:33
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,344 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 91 ms
100,376 KB
testcase_04 AC 53 ms
71,680 KB
testcase_05 AC 49 ms
62,336 KB
testcase_06 AC 102 ms
104,384 KB
testcase_07 AC 53 ms
71,808 KB
testcase_08 AC 49 ms
63,860 KB
testcase_09 AC 55 ms
66,048 KB
testcase_10 AC 48 ms
61,440 KB
testcase_11 AC 55 ms
68,352 KB
testcase_12 AC 52 ms
67,968 KB
testcase_13 AC 72 ms
83,072 KB
testcase_14 AC 68 ms
84,352 KB
testcase_15 AC 46 ms
60,288 KB
testcase_16 AC 52 ms
64,384 KB
testcase_17 AC 48 ms
64,896 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 40 ms
51,712 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 = list(input())

y = list("yukicoder")
t = y[::]
now = 0

for i in range(len(s)):
    
    for j in range(len(s) - len(t) + 1):
        for k in range(len(t)):
            if t[k] != s[j + k]:
                break
        else:
            now += 1
            for v in y:
                t.append(v)
            break
    else:
        break
print(now)
        
0