結果

問題 No.2442 線形写像
ユーザー CecilCecil
提出日時 2023-08-25 21:49:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-06 16:14:31
合計ジャッジ時間 7,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,128 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 102 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 1,317 ms
10,752 KB
testcase_13 AC 1,317 ms
10,624 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 330 ms
13,440 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list()
for _ in range(2**N):
    a = int(input())
    A.append(a)
#print(A)
for i in range(len(A)):
    for j in range(len(A)):
        n = A[int(bin((i)^(j)),2)]
        m = int(bin(A[i]^A[j]),2)
        #print(n,m)
        if n != m:
            print("No")
            exit()
print("Yes")
0