結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 38 ms
133,196 KB
testcase_02 AC 39 ms
57,472 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
52,032 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 45 ms
58,240 KB
testcase_10 AC 43 ms
58,496 KB
testcase_11 AC 44 ms
59,648 KB
testcase_12 AC 43 ms
59,776 KB
testcase_13 AC 44 ms
59,648 KB
testcase_14 AC 46 ms
59,904 KB
testcase_15 AC 189 ms
76,324 KB
testcase_16 AC 194 ms
76,136 KB
testcase_17 TLE -
testcase_18 AC 464 ms
76,876 KB
testcase_19 AC 470 ms
76,664 KB
testcase_20 AC 485 ms
76,580 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

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