結果
問題 | No.92 逃走経路 |
ユーザー |
![]() |
提出日時 | 2022-04-18 00:06:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 584 ms / 5,000 ms |
コード長 | 328 bytes |
コンパイル時間 | 340 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-26 11:34:13 |
合計ジャッジ時間 | 6,761 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
N,M,K=map(int,input().split()) E=[tuple(map(int,input().split())) for i in range(M)] D=list(map(int,input().split())) Q=set(range(1,N+1)) for d in D: NQ=set() for a,b,c in E: if c==d and a in Q: NQ.add(b) if c==d and b in Q: NQ.add(a) Q=NQ print(len(Q)) print(*sorted(Q))