結果

問題 No.762 PDCAパス
ユーザー convexineqconvexineq
提出日時 2021-03-31 02:21:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 98,252 KB
最終ジャッジ日時 2024-05-08 04:19:03
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,620 KB
testcase_01 AC 47 ms
54,872 KB
testcase_02 AC 43 ms
53,952 KB
testcase_03 AC 44 ms
54,960 KB
testcase_04 AC 44 ms
54,560 KB
testcase_05 AC 43 ms
55,132 KB
testcase_06 AC 42 ms
54,264 KB
testcase_07 AC 43 ms
54,036 KB
testcase_08 AC 46 ms
53,980 KB
testcase_09 AC 45 ms
54,192 KB
testcase_10 AC 44 ms
53,692 KB
testcase_11 AC 43 ms
54,588 KB
testcase_12 AC 44 ms
55,372 KB
testcase_13 AC 44 ms
54,100 KB
testcase_14 AC 43 ms
55,196 KB
testcase_15 AC 45 ms
54,804 KB
testcase_16 AC 45 ms
54,728 KB
testcase_17 AC 44 ms
54,248 KB
testcase_18 AC 44 ms
54,248 KB
testcase_19 AC 45 ms
54,136 KB
testcase_20 AC 45 ms
54,664 KB
testcase_21 AC 44 ms
54,444 KB
testcase_22 AC 131 ms
79,220 KB
testcase_23 AC 132 ms
79,284 KB
testcase_24 AC 224 ms
98,100 KB
testcase_25 AC 224 ms
98,252 KB
testcase_26 AC 135 ms
79,060 KB
testcase_27 AC 135 ms
79,228 KB
testcase_28 AC 253 ms
90,444 KB
testcase_29 AC 256 ms
90,484 KB
testcase_30 AC 239 ms
87,808 KB
testcase_31 AC 248 ms
87,608 KB
testcase_32 AC 247 ms
87,812 KB
testcase_33 AC 232 ms
84,864 KB
testcase_34 AC 233 ms
85,160 KB
testcase_35 AC 232 ms
85,048 KB
testcase_36 AC 198 ms
82,300 KB
testcase_37 AC 198 ms
81,768 KB
testcase_38 AC 212 ms
82,172 KB
testcase_39 AC 197 ms
81,952 KB
testcase_40 AC 200 ms
81,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
s = input()
g = [[] for _ in range(n)]
for _ in range(m):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)

from collections import defaultdict
d = {i:1 for i in range(n) if s[i]=="P"}
for B in "DCA":
    nd = defaultdict(int)
    for k,v in d.items():
        for c in g[k]:
            if s[c] == B:
                nd[c] += v
    d = nd
print(sum(d.values())%(10**9+7))
0