結果

問題 No.1400 すごろくで世界旅行
ユーザー convexineqconvexineq
提出日時 2021-02-20 00:36:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,890 ms / 3,153 ms
コード長 479 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,336 KB
最終ジャッジ日時 2024-09-17 02:33:14
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,120 KB
testcase_01 AC 39 ms
52,744 KB
testcase_02 AC 38 ms
52,884 KB
testcase_03 AC 43 ms
59,448 KB
testcase_04 AC 39 ms
54,052 KB
testcase_05 AC 44 ms
58,768 KB
testcase_06 AC 47 ms
59,480 KB
testcase_07 AC 47 ms
60,808 KB
testcase_08 AC 43 ms
58,656 KB
testcase_09 AC 44 ms
60,020 KB
testcase_10 AC 46 ms
59,608 KB
testcase_11 AC 44 ms
59,476 KB
testcase_12 AC 55 ms
63,880 KB
testcase_13 AC 134 ms
75,696 KB
testcase_14 AC 1,890 ms
77,336 KB
testcase_15 AC 549 ms
77,028 KB
testcase_16 AC 118 ms
75,728 KB
testcase_17 AC 136 ms
76,124 KB
testcase_18 AC 822 ms
76,612 KB
testcase_19 AC 38 ms
52,208 KB
testcase_20 AC 38 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(i):
    p = 1<<i
    for k in range(d):
        np = 0
        for j,sj in enumerate(bin(p)[:1:-1]):
            if sj=="1": np |= e[j]
        if np == M: return k+1
        p = np
    return 0

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