結果

問題 No.2442 線形写像
ユーザー mattu34mattu34
提出日時 2023-09-04 23:39:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 86,252 KB
最終ジャッジ日時 2024-06-22 20:53:40
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,504 KB
testcase_01 AC 37 ms
54,252 KB
testcase_02 AC 37 ms
54,992 KB
testcase_03 AC 35 ms
55,444 KB
testcase_04 AC 36 ms
55,240 KB
testcase_05 AC 35 ms
54,988 KB
testcase_06 AC 40 ms
55,328 KB
testcase_07 AC 38 ms
54,992 KB
testcase_08 AC 44 ms
60,848 KB
testcase_09 AC 43 ms
62,680 KB
testcase_10 AC 43 ms
62,188 KB
testcase_11 AC 52 ms
66,356 KB
testcase_12 AC 52 ms
66,280 KB
testcase_13 AC 51 ms
66,540 KB
testcase_14 AC 52 ms
66,928 KB
testcase_15 AC 93 ms
77,272 KB
testcase_16 AC 94 ms
77,528 KB
testcase_17 AC 197 ms
86,252 KB
testcase_18 AC 141 ms
77,512 KB
testcase_19 AC 140 ms
77,724 KB
testcase_20 AC 140 ms
77,848 KB
testcase_21 AC 194 ms
86,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import heapq

N = int(input())
A = [int(input()) for _ in range(2**N)]
if A[0] != 0:
    print("No")
    exit()
for i in range(1 << N):
    now = 0
    for j in range(17):
        if (i >> j) & 1 == 1:
            now ^= A[1 << j]
    if now != A[i]:
        print("No")
        exit()
print("Yes")
0