結果

問題 No.762 PDCAパス
ユーザー flippergoflippergo
提出日時 2021-01-05 15:13:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 94,168 KB
最終ジャッジ日時 2024-11-06 01:50:28
合計ジャッジ時間 7,294 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,744 KB
testcase_01 AC 38 ms
53,600 KB
testcase_02 AC 39 ms
53,744 KB
testcase_03 AC 38 ms
52,796 KB
testcase_04 AC 38 ms
53,008 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 38 ms
52,332 KB
testcase_07 AC 38 ms
52,812 KB
testcase_08 AC 38 ms
52,068 KB
testcase_09 AC 38 ms
52,628 KB
testcase_10 AC 38 ms
52,544 KB
testcase_11 AC 38 ms
52,552 KB
testcase_12 AC 38 ms
53,160 KB
testcase_13 AC 36 ms
52,472 KB
testcase_14 AC 38 ms
52,576 KB
testcase_15 AC 38 ms
52,132 KB
testcase_16 AC 38 ms
52,892 KB
testcase_17 AC 37 ms
53,496 KB
testcase_18 AC 39 ms
53,468 KB
testcase_19 AC 38 ms
53,684 KB
testcase_20 AC 38 ms
52,280 KB
testcase_21 AC 38 ms
53,344 KB
testcase_22 AC 130 ms
79,060 KB
testcase_23 AC 124 ms
78,760 KB
testcase_24 AC 224 ms
93,828 KB
testcase_25 AC 223 ms
93,960 KB
testcase_26 AC 132 ms
78,792 KB
testcase_27 AC 131 ms
78,780 KB
testcase_28 AC 272 ms
94,168 KB
testcase_29 AC 273 ms
94,080 KB
testcase_30 AC 251 ms
90,800 KB
testcase_31 AC 254 ms
90,732 KB
testcase_32 AC 252 ms
90,420 KB
testcase_33 AC 232 ms
85,552 KB
testcase_34 AC 228 ms
85,816 KB
testcase_35 AC 234 ms
85,656 KB
testcase_36 AC 190 ms
82,104 KB
testcase_37 AC 191 ms
82,300 KB
testcase_38 AC 190 ms
82,240 KB
testcase_39 AC 194 ms
82,060 KB
testcase_40 AC 191 ms
82,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = 10**9+7
N,M = map(int,input().split())
S = input().strip()
S = "0"+S
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    u,v = map(int,input().split())
    G[u].append(v)
    G[v].append(u)
A = [0 for _ in range(N+1)]
for i in range(1,N+1):
    if S[i]=="P":
        A[i]=1
        for j in G[i]:
            if S[j]=="D":
                A[j] = (A[j]+A[i])%p
for i in range(1,N+1):
    if S[i]=="D":
        for j in G[i]:
            if S[j]=="C":
                A[j] = (A[j]+A[i])%p
for i in range(1,N+1):
    if S[i]=="C":
        for j in G[i]:
            if S[j]=="A":
                A[j] = (A[j]+A[i])%p
cnt = 0
for i in range(1,N+1):
    if S[i]=="A":
        cnt = (cnt+A[i])%p
print(cnt)
0