結果

問題 No.762 PDCAパス
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-11-23 14:02:59
合計ジャッジ時間 7,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 53 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 45 ms
51,712 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 42 ms
51,712 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 42 ms
52,096 KB
testcase_19 AC 41 ms
51,712 KB
testcase_20 AC 42 ms
52,352 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 136 ms
78,720 KB
testcase_23 AC 135 ms
78,720 KB
testcase_24 AC 211 ms
88,704 KB
testcase_25 AC 216 ms
88,448 KB
testcase_26 AC 133 ms
78,464 KB
testcase_27 AC 140 ms
79,104 KB
testcase_28 AC 258 ms
88,064 KB
testcase_29 AC 251 ms
87,808 KB
testcase_30 AC 245 ms
85,888 KB
testcase_31 AC 241 ms
85,760 KB
testcase_32 AC 236 ms
86,144 KB
testcase_33 AC 211 ms
84,352 KB
testcase_34 AC 214 ms
84,096 KB
testcase_35 AC 284 ms
83,968 KB
testcase_36 AC 189 ms
81,536 KB
testcase_37 AC 197 ms
81,792 KB
testcase_38 AC 185 ms
81,536 KB
testcase_39 AC 193 ms
81,536 KB
testcase_40 AC 192 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m = map(int, input().split())
S = input()
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)
    
cnt = [0] * n
for f, t in zip("PDC", "DCA"):
    for i, s in enumerate(S):
        if s == f:
            if f == "P":
                cnt[i] = 1
            for j in edges[i]:
                if S[j] == t:
                    cnt[j] += cnt[i]
                    
ans = 0
for i, s in enumerate(S):
    if s == "A":
        ans += cnt[i]

print(ans % MOD)
                
0