結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,352 KB
testcase_01 AC 40 ms
52,596 KB
testcase_02 AC 40 ms
53,208 KB
testcase_03 AC 40 ms
52,136 KB
testcase_04 AC 40 ms
52,672 KB
testcase_05 AC 42 ms
52,760 KB
testcase_06 AC 40 ms
52,728 KB
testcase_07 AC 39 ms
53,500 KB
testcase_08 AC 40 ms
53,792 KB
testcase_09 AC 41 ms
54,004 KB
testcase_10 AC 42 ms
53,380 KB
testcase_11 AC 42 ms
53,612 KB
testcase_12 AC 41 ms
52,412 KB
testcase_13 AC 40 ms
53,420 KB
testcase_14 AC 39 ms
53,304 KB
testcase_15 AC 41 ms
52,936 KB
testcase_16 AC 41 ms
53,284 KB
testcase_17 AC 40 ms
52,744 KB
testcase_18 AC 41 ms
53,284 KB
testcase_19 AC 40 ms
53,012 KB
testcase_20 AC 41 ms
52,892 KB
testcase_21 AC 40 ms
53,500 KB
testcase_22 AC 132 ms
79,268 KB
testcase_23 AC 126 ms
79,284 KB
testcase_24 AC 195 ms
90,044 KB
testcase_25 AC 201 ms
89,628 KB
testcase_26 AC 133 ms
79,532 KB
testcase_27 AC 132 ms
78,752 KB
testcase_28 AC 233 ms
90,320 KB
testcase_29 AC 239 ms
90,496 KB
testcase_30 AC 239 ms
87,624 KB
testcase_31 AC 232 ms
87,760 KB
testcase_32 AC 231 ms
87,820 KB
testcase_33 AC 214 ms
85,116 KB
testcase_34 AC 215 ms
85,348 KB
testcase_35 AC 218 ms
85,096 KB
testcase_36 AC 190 ms
81,752 KB
testcase_37 AC 190 ms
82,204 KB
testcase_38 AC 187 ms
81,860 KB
testcase_39 AC 191 ms
81,904 KB
testcase_40 AC 199 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)

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