結果

問題 No.2442 線形写像
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-25 22:37:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 324 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 86,500 KB
最終ジャッジ日時 2024-06-06 17:17:16
合計ジャッジ時間 8,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
53,168 KB
testcase_02 AC 37 ms
52,180 KB
testcase_03 AC 41 ms
52,840 KB
testcase_04 AC 36 ms
52,180 KB
testcase_05 AC 37 ms
53,380 KB
testcase_06 AC 37 ms
52,740 KB
testcase_07 AC 36 ms
53,312 KB
testcase_08 AC 37 ms
53,136 KB
testcase_09 AC 39 ms
52,492 KB
testcase_10 AC 43 ms
60,056 KB
testcase_11 AC 54 ms
63,496 KB
testcase_12 AC 53 ms
63,544 KB
testcase_13 AC 54 ms
63,120 KB
testcase_14 AC 53 ms
64,488 KB
testcase_15 AC 162 ms
76,508 KB
testcase_16 AC 163 ms
76,492 KB
testcase_17 TLE -
testcase_18 AC 349 ms
76,848 KB
testcase_19 AC 346 ms
77,324 KB
testcase_20 AC 351 ms
77,104 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for b in range(n2):

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

print("Yes")
0