結果

問題 No.762 PDCAパス
ユーザー convexineqconvexineq
提出日時 2021-03-31 02:15:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 90,292 KB
最終ジャッジ日時 2024-05-08 04:12:37
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,192 KB
testcase_01 AC 34 ms
52,316 KB
testcase_02 AC 36 ms
53,172 KB
testcase_03 AC 35 ms
52,332 KB
testcase_04 AC 33 ms
52,888 KB
testcase_05 AC 35 ms
53,440 KB
testcase_06 AC 34 ms
52,336 KB
testcase_07 AC 39 ms
52,708 KB
testcase_08 AC 33 ms
52,856 KB
testcase_09 AC 34 ms
52,092 KB
testcase_10 AC 35 ms
52,696 KB
testcase_11 AC 34 ms
53,540 KB
testcase_12 AC 34 ms
52,692 KB
testcase_13 AC 37 ms
52,248 KB
testcase_14 AC 36 ms
52,464 KB
testcase_15 AC 34 ms
52,904 KB
testcase_16 AC 33 ms
52,700 KB
testcase_17 AC 33 ms
54,084 KB
testcase_18 AC 35 ms
52,764 KB
testcase_19 AC 34 ms
52,336 KB
testcase_20 AC 35 ms
52,524 KB
testcase_21 AC 34 ms
53,996 KB
testcase_22 AC 112 ms
79,144 KB
testcase_23 AC 111 ms
79,220 KB
testcase_24 AC 147 ms
90,072 KB
testcase_25 AC 167 ms
89,648 KB
testcase_26 AC 126 ms
78,520 KB
testcase_27 AC 130 ms
78,776 KB
testcase_28 AC 204 ms
90,140 KB
testcase_29 AC 189 ms
90,292 KB
testcase_30 AC 175 ms
87,680 KB
testcase_31 AC 182 ms
87,468 KB
testcase_32 AC 177 ms
87,580 KB
testcase_33 AC 161 ms
85,308 KB
testcase_34 AC 169 ms
85,284 KB
testcase_35 AC 159 ms
85,368 KB
testcase_36 AC 148 ms
81,640 KB
testcase_37 AC 152 ms
81,908 KB
testcase_38 AC 159 ms
82,112 KB
testcase_39 AC 148 ms
82,132 KB
testcase_40 AC 163 ms
82,064 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)

MOD = 10**9+7
r = [int(si=="P") for si in s]
for A,B in ["PD","DC","CA"]:
    nr = [0]*n
    for i in range(n):
        if r[i] and s[i] == A:
            for c in g[i]:
                if s[c] == B:
                    nr[c] += r[i]
                    nr[c] %= MOD
    r = nr
print(sum(r)%MOD)
0