結果

問題 No.1400 すごろくで世界旅行
ユーザー takelifetimetakelifetime
提出日時 2021-02-19 23:56:23
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 632 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 467,968 KB
最終ジャッジ日時 2024-09-17 00:14:14
合計ジャッジ時間 8,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 45 ms
52,352 KB
testcase_03 AC 96 ms
76,544 KB
testcase_04 AC 71 ms
67,072 KB
testcase_05 AC 73 ms
70,000 KB
testcase_06 AC 170 ms
79,232 KB
testcase_07 AC 282 ms
79,104 KB
testcase_08 AC 93 ms
76,416 KB
testcase_09 AC 88 ms
76,324 KB
testcase_10 AC 117 ms
76,544 KB
testcase_11 AC 78 ms
76,288 KB
testcase_12 AC 1,329 ms
115,072 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

v, d = map(int, input().split())
e = [list(map(int, list(input()))) for _ in range(v)]

def power(a, b):
    c = [[0] * v for _ in range(v)]
    for i in range(v):
        for j in range(v):
            for k in range(v):
                if a[i][k] & b[k][j]:
                    c[i][j] = 1
                    break
    return c

digits = len(bin(d)[2:])

ans = [[1 if i == j else 0 for j in range(v)] for i in range(v)]

for i in range(digits):
    if d & 1:
        ans = power(ans, e)
    e = power(e, e)
    d >>= 1

for row in ans:
    for x in row:
        if x == 0:
            print("No")
            exit()

print("Yes")
0