結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 45 ms
53,760 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 45 ms
53,248 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 44 ms
53,760 KB
testcase_13 AC 44 ms
53,248 KB
testcase_14 AC 45 ms
53,504 KB
testcase_15 AC 48 ms
53,504 KB
testcase_16 AC 49 ms
54,016 KB
testcase_17 AC 48 ms
53,632 KB
testcase_18 AC 48 ms
53,760 KB
testcase_19 AC 49 ms
53,248 KB
testcase_20 AC 48 ms
53,504 KB
testcase_21 AC 48 ms
53,632 KB
testcase_22 AC 133 ms
79,488 KB
testcase_23 AC 133 ms
79,360 KB
testcase_24 AC 219 ms
98,176 KB
testcase_25 AC 249 ms
97,920 KB
testcase_26 AC 139 ms
79,232 KB
testcase_27 AC 137 ms
79,104 KB
testcase_28 AC 259 ms
90,496 KB
testcase_29 AC 266 ms
90,496 KB
testcase_30 AC 249 ms
87,424 KB
testcase_31 AC 244 ms
87,936 KB
testcase_32 AC 248 ms
87,552 KB
testcase_33 AC 231 ms
84,992 KB
testcase_34 AC 232 ms
84,992 KB
testcase_35 AC 235 ms
84,736 KB
testcase_36 AC 200 ms
82,048 KB
testcase_37 AC 212 ms
82,048 KB
testcase_38 AC 208 ms
82,176 KB
testcase_39 AC 199 ms
82,056 KB
testcase_40 AC 204 ms
81,664 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