結果

問題 No.762 PDCAパス
ユーザー roarisroaris
提出日時 2019-12-22 12:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 88,128 KB
最終ジャッジ日時 2024-09-14 03:23:12
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,756 KB
testcase_01 AC 39 ms
52,612 KB
testcase_02 AC 39 ms
54,264 KB
testcase_03 AC 39 ms
53,024 KB
testcase_04 AC 38 ms
53,348 KB
testcase_05 AC 39 ms
52,408 KB
testcase_06 AC 39 ms
52,704 KB
testcase_07 AC 39 ms
52,152 KB
testcase_08 AC 38 ms
52,380 KB
testcase_09 AC 38 ms
52,684 KB
testcase_10 AC 38 ms
52,612 KB
testcase_11 AC 38 ms
52,340 KB
testcase_12 AC 39 ms
52,504 KB
testcase_13 AC 39 ms
52,276 KB
testcase_14 AC 38 ms
52,532 KB
testcase_15 AC 39 ms
52,548 KB
testcase_16 AC 40 ms
52,568 KB
testcase_17 AC 39 ms
52,832 KB
testcase_18 AC 39 ms
53,380 KB
testcase_19 AC 39 ms
53,408 KB
testcase_20 AC 38 ms
53,116 KB
testcase_21 AC 39 ms
53,692 KB
testcase_22 AC 85 ms
77,532 KB
testcase_23 AC 83 ms
77,488 KB
testcase_24 AC 153 ms
86,944 KB
testcase_25 AC 155 ms
87,084 KB
testcase_26 AC 89 ms
77,680 KB
testcase_27 AC 90 ms
77,732 KB
testcase_28 AC 183 ms
88,128 KB
testcase_29 AC 186 ms
87,648 KB
testcase_30 AC 170 ms
85,664 KB
testcase_31 AC 179 ms
86,200 KB
testcase_32 AC 187 ms
85,888 KB
testcase_33 AC 152 ms
84,040 KB
testcase_34 AC 158 ms
83,796 KB
testcase_35 AC 152 ms
84,100 KB
testcase_36 AC 124 ms
80,068 KB
testcase_37 AC 127 ms
79,748 KB
testcase_38 AC 127 ms
80,156 KB
testcase_39 AC 132 ms
79,624 KB
testcase_40 AC 125 ms
80,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
S = input()
adj_list = [[] for _ in range(N)]

for _ in range(M):
    ui, vi = map(int, input().split())
    adj_list[ui-1].append(vi-1)
    adj_list[vi-1].append(ui-1)

cnt = [0]*N

for v in range(N):
    if S[v] in ['P', 'A']:
        continue
    
    if S[v]=='D':
        for nv in adj_list[v]:
            if S[nv]=='P':
                cnt[v] += 1
    elif S[v]=='C':
        for nv in adj_list[v]:
            if S[nv]=='A':
                cnt[v] += 1

ans = 0
MOD = 10**9+7

for v in range(N):
    if S[v]=='D':
        for nv in adj_list[v]:
            if S[nv]=='C':
                ans += cnt[v]*cnt[nv]
                ans %= MOD

print(ans)
0