結果

問題 No.2442 線形写像
ユーザー titiatitia
提出日時 2023-08-25 22:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,967 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 87,472 KB
最終ジャッジ日時 2024-06-06 16:27:55
合計ジャッジ時間 14,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,728 KB
testcase_01 AC 775 ms
76,672 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 36 ms
53,888 KB
testcase_04 AC 768 ms
76,864 KB
testcase_05 AC 795 ms
76,672 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 799 ms
76,444 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 37 ms
54,016 KB
testcase_10 AC 769 ms
76,800 KB
testcase_11 AC 39 ms
55,872 KB
testcase_12 AC 770 ms
76,544 KB
testcase_13 AC 763 ms
76,800 KB
testcase_14 AC 40 ms
55,296 KB
testcase_15 AC 89 ms
77,312 KB
testcase_16 AC 938 ms
77,516 KB
testcase_17 AC 1,858 ms
87,472 KB
testcase_18 AC 117 ms
78,208 KB
testcase_19 AC 928 ms
78,072 KB
testcase_20 AC 959 ms
77,844 KB
testcase_21 AC 1,967 ms
87,192 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(5*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