結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 10:45:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 133,500 KB
最終ジャッジ日時 2025-01-02 16:39:09
合計ジャッジ時間 9,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 33 ms
133,500 KB
testcase_02 AC 35 ms
57,344 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
52,480 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 38 ms
58,368 KB
testcase_10 AC 40 ms
58,752 KB
testcase_11 AC 46 ms
62,848 KB
testcase_12 AC 46 ms
63,104 KB
testcase_13 AC 48 ms
62,848 KB
testcase_14 AC 47 ms
62,848 KB
testcase_15 AC 183 ms
77,056 KB
testcase_16 AC 189 ms
76,876 KB
testcase_17 TLE -
testcase_18 AC 456 ms
77,464 KB
testcase_19 AC 469 ms
77,184 KB
testcase_20 AC 450 ms
77,440 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0] * (1 << N)
A[0] = int(input())

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

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

print('Yes')
0