結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 43 ms
51,456 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 114 ms
66,688 KB
testcase_06 AC 86 ms
66,944 KB
testcase_07 AC 86 ms
66,816 KB
testcase_08 AC 54 ms
60,288 KB
testcase_09 AC 67 ms
69,504 KB
testcase_10 WA -
testcase_11 AC 119 ms
70,656 KB
testcase_12 AC 134 ms
76,288 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