結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | convexineq |
提出日時 | 2021-02-19 23:13:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 633 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-09-16 22:38:01 |
合計ジャッジ時間 | 4,391 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 43 ms
51,968 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 280 ms
76,928 KB |
testcase_14 | WA | - |
testcase_15 | AC | 147 ms
76,052 KB |
testcase_16 | WA | - |
testcase_17 | AC | 278 ms
76,544 KB |
testcase_18 | AC | 1,243 ms
76,416 KB |
testcase_19 | AC | 38 ms
51,840 KB |
testcase_20 | AC | 42 ms
51,584 KB |
ソースコード
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 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")