結果

問題 No.2442 線形写像
ユーザー mattu34mattu34
提出日時 2023-09-04 23:34:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 86,032 KB
最終ジャッジ日時 2024-06-22 20:48:58
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,148 KB
testcase_01 AC 37 ms
55,776 KB
testcase_02 AC 37 ms
54,600 KB
testcase_03 AC 36 ms
54,900 KB
testcase_04 AC 36 ms
55,552 KB
testcase_05 AC 36 ms
55,280 KB
testcase_06 AC 36 ms
54,672 KB
testcase_07 AC 36 ms
54,872 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 46 ms
62,148 KB
testcase_11 WA -
testcase_12 AC 55 ms
67,352 KB
testcase_13 AC 54 ms
68,108 KB
testcase_14 WA -
testcase_15 AC 89 ms
77,576 KB
testcase_16 AC 92 ms
77,388 KB
testcase_17 AC 170 ms
86,032 KB
testcase_18 WA -
testcase_19 AC 131 ms
77,576 KB
testcase_20 AC 135 ms
77,536 KB
testcase_21 AC 170 ms
85,876 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):
    if i % 2 == 0:
        continue
    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