結果

問題 No.1400 すごろくで世界旅行
ユーザー KudeKude
提出日時 2021-02-19 22:42:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 310 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,192 KB
最終ジャッジ日時 2024-09-16 21:08:12
合計ジャッジ時間 14,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
43,672 KB
testcase_01 AC 445 ms
43,548 KB
testcase_02 AC 466 ms
44,192 KB
testcase_03 AC 478 ms
43,600 KB
testcase_04 AC 463 ms
43,932 KB
testcase_05 AC 470 ms
43,804 KB
testcase_06 AC 471 ms
43,804 KB
testcase_07 AC 501 ms
43,804 KB
testcase_08 AC 456 ms
43,936 KB
testcase_09 AC 461 ms
44,060 KB
testcase_10 AC 459 ms
44,068 KB
testcase_11 AC 451 ms
43,924 KB
testcase_12 AC 769 ms
44,068 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

v, d = map(int, input().split())
e = np.array([list(map(int, input())) for _ in range(v)], dtype='bool')
now = np.identity(v, dtype='bool')
while d:
    if d & 1:
        now = np.dot(now, e)
    e = np.dot(e, e)
    d >>= 1
if all(all(r) for r in e):
    print('Yes')
else:
    print('No')
0