結果

問題 No.762 PDCAパス
ユーザー Konton7Konton7
提出日時 2019-05-15 23:24:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-09-14 16:06:40
合計ジャッジ時間 10,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 401 ms
12,032 KB
testcase_23 AC 405 ms
11,904 KB
testcase_24 AC 347 ms
16,256 KB
testcase_25 AC 351 ms
16,384 KB
testcase_26 AC 406 ms
14,848 KB
testcase_27 AC 410 ms
14,848 KB
testcase_28 AC 433 ms
14,080 KB
testcase_29 AC 436 ms
14,336 KB
testcase_30 AC 440 ms
13,824 KB
testcase_31 AC 432 ms
13,824 KB
testcase_32 AC 423 ms
13,824 KB
testcase_33 AC 435 ms
13,312 KB
testcase_34 AC 433 ms
13,184 KB
testcase_35 AC 435 ms
13,440 KB
testcase_36 AC 427 ms
12,800 KB
testcase_37 AC 422 ms
12,672 KB
testcase_38 AC 424 ms
12,672 KB
testcase_39 AC 430 ms
12,672 KB
testcase_40 AC 424 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = [ int(v) for v in input().split() ]
s = input()

mod = 1000000007

dlist= [ 0 for i in range(n) ]
clist= [ 0 for i in range(n) ]
dclist = []

for i in range(m):
    x, y = [ int(v) for v in input().split() ]
    if s[x-1] == "P" and s[y-1] == "D":
        dlist[y-1] += 1
        
    elif s[x-1] == "D" and s[y-1] == "P":
        dlist[x-1] += 1

    elif s[x-1] == "D" and s[y-1] == "C":
        dclist.append([x-1,y-1])

    elif s[x-1] == "C" and s[y-1] == "D":
        dclist.append([y-1,x-1])

    elif s[x-1] == "C" and s[y-1] == "A":
        clist[x-1] += 1

    elif s[x-1] == "A" and s[y-1] == "C":
        clist[y-1] += 1



s = 0
for i in dclist:
    s += (dlist[i[0]]*clist[i[1]]) 

ans = s % mod
print(ans)
0