結果

問題 No.1702 count good string
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:10:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,400 KB
最終ジャッジ日時 2024-07-23 04:34:33
合計ジャッジ時間 3,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 36 ms
53,208 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 38 ms
52,188 KB
testcase_04 AC 38 ms
52,068 KB
testcase_05 AC 37 ms
53,224 KB
testcase_06 AC 37 ms
52,424 KB
testcase_07 AC 36 ms
52,068 KB
testcase_08 AC 36 ms
52,192 KB
testcase_09 AC 37 ms
52,888 KB
testcase_10 AC 39 ms
52,952 KB
testcase_11 AC 37 ms
52,740 KB
testcase_12 AC 36 ms
52,796 KB
testcase_13 AC 56 ms
73,796 KB
testcase_14 AC 62 ms
75,840 KB
testcase_15 AC 56 ms
74,172 KB
testcase_16 AC 62 ms
74,088 KB
testcase_17 AC 56 ms
73,916 KB
testcase_18 AC 68 ms
75,924 KB
testcase_19 AC 63 ms
74,392 KB
testcase_20 AC 59 ms
74,068 KB
testcase_21 AC 58 ms
73,728 KB
testcase_22 AC 61 ms
73,860 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 51 ms
72,716 KB
testcase_44 AC 60 ms
74,396 KB
testcase_45 AC 37 ms
52,292 KB
testcase_46 AC 38 ms
52,404 KB
testcase_47 AC 36 ms
52,460 KB
testcase_48 AC 37 ms
52,312 KB
testcase_49 AC 36 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

yukicoder = "yukicoder"
P = 10 ** 9 + 7
N = int(input())
S = input()
X = [0] * 10 # without ?
Y = [0] * 10 # with ?
X[0] = 1
for s in S:
    for i in range(9):
        if s == yukicoder[i]:
            X[i+1] = (X[i+1] + X[i]) % P
            Y[i+1] = (Y[i+1] + Y[i]) % P
            break
    else:
        for i in range(9):
            Y[i+1] = (Y[i+1] + X[i]) % P

print((X[9] + Y[9]) % P)
0