結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
50,624 KB
testcase_01 AC 504 ms
44,076 KB
testcase_02 AC 511 ms
43,680 KB
testcase_03 AC 514 ms
43,568 KB
testcase_04 AC 510 ms
44,076 KB
testcase_05 AC 510 ms
43,812 KB
testcase_06 AC 541 ms
43,568 KB
testcase_07 AC 582 ms
43,676 KB
testcase_08 AC 519 ms
43,676 KB
testcase_09 AC 512 ms
43,940 KB
testcase_10 AC 525 ms
43,824 KB
testcase_11 AC 512 ms
43,672 KB
testcase_12 AC 851 ms
43,676 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

def solve():
    v, d = map(int, input().split())
    e = np.array([list(map(int, sys.stdin.readline().rstrip())) for _ in range(v)], dtype='bool')
    now = np.identity(v, dtype='bool')
    while d:
        if d % 2:
            now = np.dot(now, e)
        e = np.dot(e, e)
        d //= 2

    if all(all(r) for r in now):
        print('Yes')
    else:
        print('No')
solve()
0