結果
問題 | No.762 PDCAパス |
ユーザー | yakeshiba |
提出日時 | 2020-11-01 01:52:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 81,872 KB |
実行使用メモリ | 650,236 KB |
最終ジャッジ日時 | 2024-07-22 05:35:17 |
合計ジャッジ時間 | 6,233 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
58,752 KB |
testcase_01 | AC | 47 ms
53,632 KB |
testcase_02 | AC | 47 ms
53,760 KB |
testcase_03 | AC | 51 ms
53,504 KB |
testcase_04 | AC | 48 ms
53,248 KB |
testcase_05 | AC | 47 ms
53,376 KB |
testcase_06 | AC | 47 ms
53,504 KB |
testcase_07 | AC | 47 ms
53,504 KB |
testcase_08 | AC | 47 ms
53,248 KB |
testcase_09 | AC | 49 ms
53,376 KB |
testcase_10 | AC | 48 ms
53,504 KB |
testcase_11 | AC | 47 ms
53,632 KB |
testcase_12 | AC | 49 ms
53,504 KB |
testcase_13 | AC | 48 ms
53,376 KB |
testcase_14 | AC | 47 ms
53,376 KB |
testcase_15 | AC | 48 ms
53,376 KB |
testcase_16 | AC | 48 ms
54,144 KB |
testcase_17 | AC | 47 ms
53,504 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 48 ms
53,632 KB |
testcase_22 | MLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
from collections import defaultdict n, m = map(int,input().split()) S = input() ind = defaultdict(list) for i,s in enumerate(S): ind[s].append(i) edge = [[] for _ in range(n)] for _ in range(m): u, v = map(lambda x:int(x)-1,input().split()) edge[u].append(v) edge[v].append(u) D = {} C = {} A = {} for i in ind["P"]: for to in edge[i]: if S[to] == "D": D[str(i)+str(to)] = 1 #print(D) for i in D.keys(): j = int(i[-1]) for to in edge[j]: if S[to] == "C": C[i+str(to)] = 1 #print(C) for i in C.keys(): j = int(i[-1]) for to in edge[j]: if S[to] == "A": A[i+str(to)] = 1 #print(A) print(len(A.keys()))