結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 45 ms
51,968 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 43 ms
51,968 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 44 ms
52,224 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 41 ms
51,712 KB
testcase_22 AC 136 ms
79,232 KB
testcase_23 AC 139 ms
78,720 KB
testcase_24 AC 218 ms
88,320 KB
testcase_25 AC 221 ms
88,320 KB
testcase_26 AC 141 ms
78,592 KB
testcase_27 AC 140 ms
78,976 KB
testcase_28 AC 269 ms
87,808 KB
testcase_29 AC 258 ms
87,552 KB
testcase_30 AC 251 ms
86,144 KB
testcase_31 AC 245 ms
85,504 KB
testcase_32 AC 254 ms
86,016 KB
testcase_33 AC 226 ms
83,840 KB
testcase_34 AC 229 ms
84,096 KB
testcase_35 AC 229 ms
84,224 KB
testcase_36 AC 202 ms
81,920 KB
testcase_37 AC 197 ms
81,280 KB
testcase_38 AC 194 ms
81,664 KB
testcase_39 AC 193 ms
81,536 KB
testcase_40 AC 192 ms
81,792 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