結果

問題 No.1400 すごろくで世界旅行
ユーザー convexineqconvexineq
提出日時 2021-02-19 23:14:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-16 22:40:44
合計ジャッジ時間 6,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 55 ms
63,104 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 47 ms
58,368 KB
testcase_06 AC 73 ms
75,392 KB
testcase_07 AC 78 ms
75,648 KB
testcase_08 AC 55 ms
63,616 KB
testcase_09 AC 53 ms
62,336 KB
testcase_10 AC 59 ms
67,456 KB
testcase_11 AC 54 ms
62,848 KB
testcase_12 AC 121 ms
75,392 KB
testcase_13 AC 289 ms
77,312 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(i):
    p = 1<<i
    for _ in range(min(d,4001)):
        np = j = 0
        while p:
            if p&1: np |= e[j]
            p >>= 1
            j += 1
        if np == M: return True
        p = np
    return False

import sys
input = sys.stdin.readline
v,d = map(int,input().split())
e = [int(input()[::-1],2) for _ in range(v)]
M = (1<<v) - 1
for i in range(v):
    if not check(i):
        print("No")
        exit()
print("Yes")
0