結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,088 KB
testcase_01 AC 38 ms
133,124 KB
testcase_02 AC 34 ms
57,472 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 40 ms
58,752 KB
testcase_10 AC 41 ms
59,008 KB
testcase_11 AC 46 ms
62,848 KB
testcase_12 AC 51 ms
63,104 KB
testcase_13 AC 47 ms
63,104 KB
testcase_14 AC 45 ms
63,104 KB
testcase_15 AC 186 ms
76,672 KB
testcase_16 AC 188 ms
76,800 KB
testcase_17 TLE -
testcase_18 AC 447 ms
77,184 KB
testcase_19 AC 473 ms
77,364 KB
testcase_20 AC 441 ms
77,312 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