結果

問題 No.762 PDCAパス
ユーザー R ITSUMIR ITSUMI
提出日時 2020-06-24 00:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,404 KB
最終ジャッジ日時 2024-07-03 19:36:56
合計ジャッジ時間 5,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 34 ms
51,840 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 35 ms
52,480 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 36 ms
52,224 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 AC 178 ms
87,424 KB
testcase_23 AC 163 ms
86,876 KB
testcase_24 AC 167 ms
93,352 KB
testcase_25 AC 173 ms
93,404 KB
testcase_26 AC 188 ms
87,552 KB
testcase_27 AC 189 ms
87,552 KB
testcase_28 AC 197 ms
93,092 KB
testcase_29 AC 195 ms
93,096 KB
testcase_30 AC 204 ms
92,132 KB
testcase_31 AC 199 ms
92,032 KB
testcase_32 AC 195 ms
91,264 KB
testcase_33 AC 190 ms
90,112 KB
testcase_34 AC 205 ms
90,164 KB
testcase_35 AC 204 ms
90,240 KB
testcase_36 AC 187 ms
88,192 KB
testcase_37 AC 177 ms
88,576 KB
testcase_38 AC 192 ms
88,320 KB
testcase_39 AC 180 ms
88,488 KB
testcase_40 AC 174 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N, M = map(int, input().split())
S = input()
G = [list(map(int, input().split())) for _ in range(M)]
edges = [[] for _ in range(N)]
check = ['PD','DC','CA']
for a, b in G:
    tmp1 = S[a-1]+S[b-1]
    tmp2 = S[b-1]+S[a-1]
    for i in check:
        if tmp1 == i:
            edges[a - 1].append(b - 1)
        if tmp2 == i:
            edges[b - 1].append(a - 1)
ans = 0
for i in range(N):
    if S[i]=="P":
        for j in edges[i]:
            for k in edges[j]:
                ans += len(edges[k])%MOD
print(ans%MOD)
0