結果

問題 No.92 逃走経路
ユーザー 👑 rin204rin204
提出日時 2022-01-20 10:19:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2024-11-23 14:27:42
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
72,092 KB
testcase_01 AC 37 ms
52,328 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 38 ms
53,092 KB
testcase_04 AC 36 ms
52,404 KB
testcase_05 AC 91 ms
66,480 KB
testcase_06 AC 70 ms
67,248 KB
testcase_07 AC 71 ms
68,056 KB
testcase_08 AC 48 ms
61,180 KB
testcase_09 AC 54 ms
69,452 KB
testcase_10 AC 97 ms
70,168 KB
testcase_11 AC 94 ms
70,840 KB
testcase_12 AC 108 ms
76,044 KB
testcase_13 AC 51 ms
64,956 KB
testcase_14 AC 59 ms
69,032 KB
testcase_15 AC 64 ms
69,992 KB
testcase_16 AC 61 ms
67,564 KB
testcase_17 AC 71 ms
71,032 KB
testcase_18 AC 69 ms
68,480 KB
testcase_19 AC 67 ms
67,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c))
    edges[b].append((a, c))
D = list(map(int, input().split()))
se = set(range(n))
for d in D:
    se2 = set()
    for pos in se:
        for npos, c in edges[pos]:
            if c == d:
                se2.add(npos)
    se = se2
    
print(len(se))
lst = sorted(se)
print(*(l + 1 for l in lst))
0