結果

問題 No.762 PDCAパス
ユーザー tobusakanatobusakana
提出日時 2022-11-27 16:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 89,844 KB
最終ジャッジ日時 2024-10-04 05:26:26
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,148 KB
testcase_01 AC 39 ms
52,064 KB
testcase_02 AC 34 ms
52,736 KB
testcase_03 AC 35 ms
52,488 KB
testcase_04 AC 35 ms
53,024 KB
testcase_05 AC 34 ms
53,296 KB
testcase_06 AC 35 ms
52,344 KB
testcase_07 AC 35 ms
52,428 KB
testcase_08 AC 34 ms
53,300 KB
testcase_09 AC 35 ms
52,612 KB
testcase_10 AC 36 ms
52,544 KB
testcase_11 AC 36 ms
53,384 KB
testcase_12 AC 35 ms
53,384 KB
testcase_13 AC 35 ms
52,912 KB
testcase_14 AC 35 ms
53,228 KB
testcase_15 AC 36 ms
53,176 KB
testcase_16 AC 36 ms
52,668 KB
testcase_17 AC 38 ms
52,316 KB
testcase_18 AC 37 ms
53,536 KB
testcase_19 AC 38 ms
53,220 KB
testcase_20 AC 37 ms
51,872 KB
testcase_21 AC 37 ms
53,356 KB
testcase_22 AC 81 ms
77,380 KB
testcase_23 AC 80 ms
77,312 KB
testcase_24 AC 141 ms
88,808 KB
testcase_25 AC 146 ms
89,132 KB
testcase_26 AC 84 ms
77,504 KB
testcase_27 AC 84 ms
77,864 KB
testcase_28 AC 173 ms
89,816 KB
testcase_29 AC 176 ms
89,844 KB
testcase_30 AC 161 ms
87,524 KB
testcase_31 AC 147 ms
87,344 KB
testcase_32 AC 147 ms
87,376 KB
testcase_33 AC 127 ms
83,812 KB
testcase_34 AC 127 ms
83,660 KB
testcase_35 AC 131 ms
83,952 KB
testcase_36 AC 114 ms
79,684 KB
testcase_37 AC 132 ms
80,064 KB
testcase_38 AC 138 ms
80,116 KB
testcase_39 AC 125 ms
79,196 KB
testcase_40 AC 119 ms
79,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N,M = map(int,readline().split())
S = readline().rstrip()
DIV = 10 ** 9 + 7

G = [[] for i in range(N)]
for _ in range(M):
    u,v = map(int,readline().split())
    G[u - 1].append(v - 1)
    G[v - 1].append(u - 1)
dp = [0] * N
for i in range(N):
    if S[i] == "P":
        dp[i] = 1
        
T = "DCA"
for t in T:
    new_dp = [0] * N
    for v in range(N):
        if dp[v] == 0:
            continue
        for child in G[v]:
            if S[child] == t:
                new_dp[child] += dp[v]
                new_dp[child] %= DIV
    dp = new_dp
        
print(sum(dp) % DIV)        

0