結果

問題 No.1400 すごろくで世界旅行
ユーザー ytoki28ytoki28
提出日時 2021-02-20 00:03:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 107,300 KB
最終ジャッジ日時 2024-09-17 00:22:53
合計ジャッジ時間 15,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
51,380 KB
testcase_01 AC 451 ms
43,584 KB
testcase_02 AC 454 ms
43,668 KB
testcase_03 AC 462 ms
44,048 KB
testcase_04 AC 444 ms
43,544 KB
testcase_05 AC 449 ms
43,668 KB
testcase_06 AC 573 ms
43,924 KB
testcase_07 AC 684 ms
44,312 KB
testcase_08 AC 459 ms
44,056 KB
testcase_09 AC 458 ms
43,928 KB
testcase_10 AC 497 ms
43,544 KB
testcase_11 AC 459 ms
43,920 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

readline = sys.stdin.readline
read = sys.stdin.read

v, d = map(int, readline().split())
a = [list(map(int,readline().rstrip('\n'))) for i in range(v)]
a = np.array(a)
ans = "Yes" if np.all(np.linalg.matrix_power(a,min(d,v))) else "No"
print(ans)
0