結果

問題 No.762 PDCAパス
ユーザー wgrapewgrape
提出日時 2024-10-11 16:40:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 611 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-10-11 16:40:11
合計ジャッジ時間 8,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,880 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 43 ms
53,248 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 56 ms
53,632 KB
testcase_10 AC 44 ms
53,760 KB
testcase_11 AC 45 ms
53,888 KB
testcase_12 AC 45 ms
53,376 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 44 ms
54,144 KB
testcase_15 AC 45 ms
53,760 KB
testcase_16 AC 45 ms
53,888 KB
testcase_17 AC 44 ms
53,504 KB
testcase_18 AC 44 ms
54,016 KB
testcase_19 AC 44 ms
53,632 KB
testcase_20 AC 43 ms
53,504 KB
testcase_21 AC 44 ms
53,888 KB
testcase_22 AC 1,058 ms
76,928 KB
testcase_23 AC 1,056 ms
77,312 KB
testcase_24 AC 207 ms
86,912 KB
testcase_25 AC 203 ms
87,168 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
S = input()
from collections import defaultdict
dic = defaultdict(list)

for i in range(N):
    dic[S[i]].append(i)
T = "PDCA"

DIV = 1000000007
    
G = [[] for i in range(N)]
for _ in range(M):
    u,v = map(int,input().split())
    if S[u - 1] + S[v - 1] in T:
        G[v - 1].append(u - 1)
    if S[v - 1] + S[u - 1] in T:
        G[u - 1].append(v - 1)

def dfs(x):
    if S[x] == "P":
        return 1
    res = 0
    for child in G[x]:
        res += dfs(child)
        res %= DIV
    return res

ans = 0
for v in dic["A"]:
    ans += dfs(v)
    ans %= DIV
    
print(ans)
0