結果
問題 | No.92 逃走経路 |
ユーザー | akanaya |
提出日時 | 2020-03-28 15:13:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-06-10 17:24:47 |
合計ジャッジ時間 | 2,361 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
10,752 KB |
testcase_02 | AC | 25 ms
10,624 KB |
testcase_03 | AC | 25 ms
10,624 KB |
testcase_04 | AC | 24 ms
10,752 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
n, m ,k = list(map(int, input().split(' '))) abcm = [None] * m for i in range(m): abcm[i] = list(map(int, input().split(' '))) dk = list(map(int, input().split(' '))) def solver(cp, x): if x == k: return cp for i in range(m): bg = abcm[i] if bg[0] == cp and bg[2] == dk[x]: r = solver(bg[1], x + 1) return r if bg[1] == cp and bg[2] == dk[x]: r = solver(bg[0], x + 1) return r return None c = 0 cps = set() for i in range(1, n + 1): result = solver(i, 0) if result is not None: c += 1 cps.add(result) cps = sorted(cps) print(c) for i in range(c): print(cps[i] ,end=' ') print()