結果
問題 | No.92 逃走経路 |
ユーザー | cologne |
提出日時 | 2022-01-27 16:08:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 76,288 KB |
最終ジャッジ日時 | 2024-06-07 12:15:04 |
合計ジャッジ時間 | 2,466 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 39 ms
51,840 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 101 ms
75,648 KB |
testcase_06 | AC | 63 ms
64,512 KB |
testcase_07 | AC | 66 ms
64,384 KB |
testcase_08 | AC | 46 ms
60,416 KB |
testcase_09 | AC | 64 ms
75,392 KB |
testcase_10 | WA | - |
testcase_11 | AC | 103 ms
76,160 KB |
testcase_12 | AC | 104 ms
75,904 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import sys def input(): return sys.stdin.readline().rstrip() def main(): N, M, K = map(int, input().split()) abc = [list(map(int, input().split())) for i in range(M)] *d, = map(int, input().split()) adj = [[] for i in range(N+1)] for a, b, c in abc: adj[a].append((b, c)) adj[b].append((a, c)) *cur, = range(1, N+1) for e in d: ncur = [] for v in cur: for u, c in adj[v]: if c == e: ncur.append(u) cur = list(set(ncur)) print(len(cur)) print(*cur) if __name__ == '__main__': main()