結果

問題 No.1400 すごろくで世界旅行
ユーザー takelifetime
提出日時 2021-02-19 21:45:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 106,840 KB
最終ジャッジ日時 2024-09-16 18:14:19
合計ジャッジ時間 16,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 TLE * 2 -- * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0