結果

問題 No.2442 線形写像
ユーザー titiatitia
提出日時 2023-08-25 22:00:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 306 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,424 KB
最終ジャッジ日時 2024-06-06 16:27:24
合計ジャッジ時間 15,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,888 KB
testcase_01 AC 1,232 ms
76,800 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 39 ms
54,144 KB
testcase_04 AC 1,207 ms
76,884 KB
testcase_05 AC 1,237 ms
76,800 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 1,250 ms
76,516 KB
testcase_08 AC 41 ms
54,144 KB
testcase_09 AC 42 ms
54,528 KB
testcase_10 AC 1,286 ms
76,800 KB
testcase_11 AC 43 ms
55,296 KB
testcase_12 AC 1,271 ms
76,792 KB
testcase_13 AC 1,256 ms
77,184 KB
testcase_14 AC 42 ms
54,656 KB
testcase_15 AC 91 ms
77,664 KB
testcase_16 AC 1,416 ms
77,492 KB
testcase_17 TLE -
testcase_18 AC 135 ms
78,208 KB
testcase_19 AC 1,450 ms
78,336 KB
testcase_20 AC 1,445 ms
78,336 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

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(7*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