結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 10:52:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 82,568 KB
最終ジャッジ日時 2024-06-07 07:30:17
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,152 KB
testcase_01 AC 37 ms
51,872 KB
testcase_02 AC 37 ms
52,524 KB
testcase_03 AC 37 ms
52,348 KB
testcase_04 AC 37 ms
52,000 KB
testcase_05 AC 37 ms
53,076 KB
testcase_06 AC 37 ms
52,556 KB
testcase_07 AC 37 ms
52,248 KB
testcase_08 AC 38 ms
53,208 KB
testcase_09 AC 38 ms
52,552 KB
testcase_10 AC 49 ms
63,876 KB
testcase_11 AC 49 ms
64,368 KB
testcase_12 AC 50 ms
63,592 KB
testcase_13 AC 51 ms
63,756 KB
testcase_14 AC 49 ms
63,880 KB
testcase_15 AC 96 ms
76,736 KB
testcase_16 AC 96 ms
76,512 KB
testcase_17 AC 214 ms
82,568 KB
testcase_18 AC 145 ms
77,492 KB
testcase_19 AC 146 ms
77,304 KB
testcase_20 AC 145 ms
77,240 KB
testcase_21 AC 213 ms
82,352 KB
権限があれば一括ダウンロードができます

ソースコード

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 = A[S]
    for j in range(N):
    	if S >> j & 1:
    		T ^= A[1 << j]
    
    if T:
    	print('No')
    	exit()

print('Yes')
0