結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 10:47:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 339 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,432 KB
最終ジャッジ日時 2024-06-10 19:54:52
合計ジャッジ時間 4,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
57,216 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 32 ms
51,584 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 31 ms
51,712 KB
testcase_07 AC 31 ms
51,840 KB
testcase_08 AC 32 ms
52,224 KB
testcase_09 AC 35 ms
57,984 KB
testcase_10 AC 35 ms
58,496 KB
testcase_11 AC 36 ms
59,392 KB
testcase_12 AC 36 ms
59,392 KB
testcase_13 AC 36 ms
59,392 KB
testcase_14 AC 37 ms
59,264 KB
testcase_15 AC 162 ms
76,236 KB
testcase_16 AC 157 ms
76,148 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

N = int(stdin.readline())
A = [0] * (1 << N)
A[0] = int(stdin.readline())

if A[0]:
    print('No')
    exit()

for S in range(1, 1 << N):
    A[S] = int(stdin.readline())
    T = S
    while T:
        if A[S] ^ A[T] ^ A[S ^ T]:
            print('No')
            exit()
        T -= 1
        T &= S

print('Yes')
0