結果

問題 No.92 逃走経路
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 13:29:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-11-23 13:48:24
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 111 ms
66,560 KB
testcase_06 AC 84 ms
66,816 KB
testcase_07 AC 83 ms
67,200 KB
testcase_08 AC 51 ms
60,416 KB
testcase_09 AC 64 ms
69,760 KB
testcase_10 WA -
testcase_11 AC 109 ms
71,168 KB
testcase_12 AC 123 ms
75,520 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
g=[[] for _ in range(n+1)]
for _ in range(m):
    a,b,c=map(int,input().split())
    g[a].append([b,c])
    g[b].append([a,c])
d=list(map(int,input().split()))
kouho=set(range(1,n+1))
for i in range(k):
    tmp=set()
    for j in kouho:
        for v,c in g[j]:
            if c==d[i]:
                tmp.add(v)
    kouho=tmp
print(len(kouho))
kouho=list(kouho)
print(*kouho)
0