結果

問題 No.1702 count good string
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:25:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 438 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,108 KB
最終ジャッジ日時 2024-07-23 04:59:53
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,180 KB
testcase_01 RE -
testcase_02 AC 38 ms
52,256 KB
testcase_03 AC 38 ms
53,164 KB
testcase_04 AC 39 ms
53,352 KB
testcase_05 AC 38 ms
52,904 KB
testcase_06 AC 39 ms
54,252 KB
testcase_07 AC 38 ms
52,732 KB
testcase_08 AC 37 ms
53,004 KB
testcase_09 AC 39 ms
52,000 KB
testcase_10 AC 38 ms
52,664 KB
testcase_11 AC 38 ms
52,804 KB
testcase_12 AC 39 ms
52,616 KB
testcase_13 AC 57 ms
74,420 KB
testcase_14 AC 64 ms
76,076 KB
testcase_15 AC 58 ms
74,168 KB
testcase_16 AC 64 ms
74,040 KB
testcase_17 AC 58 ms
74,040 KB
testcase_18 AC 69 ms
75,976 KB
testcase_19 AC 64 ms
74,048 KB
testcase_20 AC 58 ms
74,280 KB
testcase_21 AC 57 ms
73,992 KB
testcase_22 AC 62 ms
73,760 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 52 ms
73,316 KB
testcase_44 AC 66 ms
76,108 KB
testcase_45 AC 38 ms
53,356 KB
testcase_46 AC 37 ms
52,744 KB
testcase_47 AC 38 ms
52,272 KB
testcase_48 AC 38 ms
53,752 KB
testcase_49 AC 37 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

yukicoder = "yukicoder"
P = 10 ** 9 + 7
N = int(input())
S = input()
# assert len(S) == N
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:
        assert s == "?"
        for j in range(9):
            Y[j+1] = (Y[j+1] + X[j]) % P

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