結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | takelifetime |
提出日時 | 2021-02-19 21:45:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 106,840 KB |
最終ジャッジ日時 | 2024-09-16 18:14:19 |
合計ジャッジ時間 | 16,480 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 493 ms
50,624 KB |
testcase_01 | AC | 489 ms
43,676 KB |
testcase_02 | AC | 506 ms
43,676 KB |
testcase_03 | AC | 521 ms
43,808 KB |
testcase_04 | AC | 495 ms
43,668 KB |
testcase_05 | AC | 516 ms
43,776 KB |
testcase_06 | AC | 660 ms
43,656 KB |
testcase_07 | AC | 879 ms
44,340 KB |
testcase_08 | AC | 538 ms
43,552 KB |
testcase_09 | AC | 510 ms
43,656 KB |
testcase_10 | AC | 534 ms
43,784 KB |
testcase_11 | AC | 501 ms
43,780 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import numpy as np v, d = map(int, input().split()) e = np.array([list(map(int, list(input()))) for _ in range(v)], dtype=np.int64) e_d = np.linalg.matrix_power(e, d) print("Yes" if len(e_d[e_d.nonzero()]) == v * v else "No")