結果

問題 No.2442 線形写像
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-25 22:38:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 87,068 KB
最終ジャッジ日時 2024-06-06 17:19:48
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 37 ms
52,532 KB
testcase_02 AC 36 ms
52,000 KB
testcase_03 AC 37 ms
52,324 KB
testcase_04 AC 37 ms
53,012 KB
testcase_05 AC 37 ms
53,248 KB
testcase_06 AC 37 ms
52,284 KB
testcase_07 AC 37 ms
52,576 KB
testcase_08 AC 38 ms
52,264 KB
testcase_09 AC 39 ms
53,880 KB
testcase_10 AC 42 ms
58,820 KB
testcase_11 AC 44 ms
61,020 KB
testcase_12 AC 43 ms
59,816 KB
testcase_13 AC 44 ms
60,748 KB
testcase_14 AC 43 ms
59,664 KB
testcase_15 AC 111 ms
76,268 KB
testcase_16 AC 111 ms
76,012 KB
testcase_17 TLE -
testcase_18 AC 225 ms
76,820 KB
testcase_19 AC 223 ms
76,684 KB
testcase_20 AC 225 ms
76,524 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n = int(input())
n2 = 1<<n
A = [int(input()) for i in range(n2)]

for b in range(n2):
    a = A[b]
    b1 = b
    if a != A[b1]^A[b^b1]:
        print("No")
        exit()
    now = b & (b-1)
    while now > now^b:
        if a != A[now]^A[now^b]:
            print("No")
            exit()
        now = (now-1) & b

print("Yes")
0