結果

問題 No.2442 線形写像
ユーザー titiatitia
提出日時 2023-08-25 22:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,007 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,552 KB
最終ジャッジ日時 2024-06-07 07:34:34
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 430 ms
76,672 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 429 ms
77,056 KB
testcase_05 AC 431 ms
76,672 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 427 ms
76,800 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 423 ms
76,544 KB
testcase_11 AC 45 ms
55,040 KB
testcase_12 AC 433 ms
76,672 KB
testcase_13 AC 421 ms
76,928 KB
testcase_14 AC 44 ms
54,528 KB
testcase_15 AC 105 ms
77,184 KB
testcase_16 AC 495 ms
77,440 KB
testcase_17 AC 1,007 ms
87,552 KB
testcase_18 AC 131 ms
78,080 KB
testcase_19 AC 529 ms
77,824 KB
testcase_20 AC 524 ms
78,080 KB
testcase_21 AC 982 ms
87,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import randint

N=int(input())
A=[int(input()) for i in range(2**N)]

if A[0]!=0:
    print("No")
    exit()

for i in range(2*10**6):
    x,y=randint(0,2**N-1),randint(0,2**N-1)

    if A[x^y]!=A[x]^A[y]:
        print("No")
        exit()

print("Yes")
0