結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,556 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
54,172 KB
testcase_03 AC 38 ms
52,460 KB
testcase_04 AC 41 ms
53,136 KB
testcase_05 AC 37 ms
53,540 KB
testcase_06 AC 37 ms
53,800 KB
testcase_07 AC 38 ms
52,200 KB
testcase_08 AC 38 ms
52,504 KB
testcase_09 AC 38 ms
52,316 KB
testcase_10 AC 38 ms
52,336 KB
testcase_11 AC 38 ms
52,744 KB
testcase_12 AC 37 ms
52,272 KB
testcase_13 AC 38 ms
52,756 KB
testcase_14 AC 38 ms
53,676 KB
testcase_15 AC 38 ms
52,464 KB
testcase_16 AC 40 ms
52,804 KB
testcase_17 AC 37 ms
53,556 KB
testcase_18 AC 38 ms
52,544 KB
testcase_19 AC 38 ms
52,256 KB
testcase_20 AC 39 ms
52,624 KB
testcase_21 AC 39 ms
52,712 KB
testcase_22 AC 124 ms
78,860 KB
testcase_23 AC 126 ms
78,916 KB
testcase_24 AC 187 ms
89,932 KB
testcase_25 AC 189 ms
89,556 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 219 ms
90,016 KB
testcase_29 AC 219 ms
90,404 KB
testcase_30 AC 223 ms
87,596 KB
testcase_31 AC 213 ms
87,700 KB
testcase_32 AC 214 ms
87,540 KB
testcase_33 AC 191 ms
84,860 KB
testcase_34 AC 194 ms
84,840 KB
testcase_35 AC 192 ms
84,980 KB
testcase_36 AC 169 ms
81,584 KB
testcase_37 AC 175 ms
82,024 KB
testcase_38 AC 173 ms
81,856 KB
testcase_39 AC 175 ms
81,892 KB
testcase_40 AC 178 ms
81,780 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