結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 10:50:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2025-01-02 16:45:42
合計ジャッジ時間 23,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,188 KB
testcase_01 AC 28 ms
15,488 KB
testcase_02 AC 28 ms
15,360 KB
testcase_03 AC 30 ms
21,376 KB
testcase_04 AC 29 ms
15,744 KB
testcase_05 AC 28 ms
22,144 KB
testcase_06 AC 31 ms
15,360 KB
testcase_07 AC 28 ms
22,016 KB
testcase_08 AC 28 ms
15,488 KB
testcase_09 AC 29 ms
22,272 KB
testcase_10 AC 33 ms
15,744 KB
testcase_11 AC 55 ms
10,368 KB
testcase_12 AC 58 ms
10,496 KB
testcase_13 AC 60 ms
10,240 KB
testcase_14 AC 55 ms
10,112 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
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