結果

問題 No.762 PDCAパス
ユーザー convexineqconvexineq
提出日時 2021-03-31 02:14:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 90,088 KB
最終ジャッジ日時 2024-12-14 04:31:23
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,548 KB
testcase_01 AC 37 ms
52,812 KB
testcase_02 AC 38 ms
52,512 KB
testcase_03 AC 36 ms
52,988 KB
testcase_04 AC 38 ms
52,872 KB
testcase_05 AC 37 ms
52,064 KB
testcase_06 AC 37 ms
52,684 KB
testcase_07 AC 37 ms
53,228 KB
testcase_08 AC 37 ms
52,560 KB
testcase_09 AC 38 ms
52,216 KB
testcase_10 AC 37 ms
52,136 KB
testcase_11 AC 37 ms
52,632 KB
testcase_12 AC 37 ms
53,888 KB
testcase_13 AC 36 ms
52,820 KB
testcase_14 AC 36 ms
52,856 KB
testcase_15 AC 38 ms
53,600 KB
testcase_16 AC 39 ms
52,792 KB
testcase_17 AC 38 ms
52,616 KB
testcase_18 AC 39 ms
53,504 KB
testcase_19 AC 38 ms
52,816 KB
testcase_20 AC 38 ms
53,144 KB
testcase_21 AC 38 ms
53,068 KB
testcase_22 AC 126 ms
79,120 KB
testcase_23 AC 121 ms
78,832 KB
testcase_24 AC 174 ms
89,688 KB
testcase_25 AC 180 ms
89,936 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 212 ms
89,976 KB
testcase_29 AC 201 ms
90,088 KB
testcase_30 AC 195 ms
87,580 KB
testcase_31 AC 197 ms
87,436 KB
testcase_32 AC 192 ms
87,688 KB
testcase_33 AC 188 ms
85,004 KB
testcase_34 AC 188 ms
85,164 KB
testcase_35 AC 186 ms
85,340 KB
testcase_36 AC 170 ms
81,580 KB
testcase_37 AC 166 ms
81,688 KB
testcase_38 AC 169 ms
81,896 KB
testcase_39 AC 164 ms
81,972 KB
testcase_40 AC 168 ms
81,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
s = input()
g = [[] for _ in range(n)]
for _ in range(m):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)

r = [int(si=="P") for si in s]
for A,B in ["PD","DC","CA"]:
    nr = [0]*n
    for i in range(n):
        if r[i] and s[i] == A:
            for c in g[i]:
                if s[c] == B:
                    nr[c] += r[i]
    r = nr
print(sum(r))
0