結果
問題 | No.2442 線形写像 |
ユーザー | Nikkuniku029 |
提出日時 | 2023-08-25 22:09:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 911 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 86,528 KB |
最終ジャッジ日時 | 2024-06-06 16:37:11 |
合計ジャッジ時間 | 3,047 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,968 KB |
testcase_01 | AC | 37 ms
51,712 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 38 ms
51,968 KB |
testcase_04 | AC | 38 ms
52,224 KB |
testcase_05 | WA | - |
testcase_06 | AC | 39 ms
51,840 KB |
testcase_07 | WA | - |
testcase_08 | AC | 39 ms
52,224 KB |
testcase_09 | AC | 41 ms
52,864 KB |
testcase_10 | WA | - |
testcase_11 | AC | 61 ms
64,256 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 58 ms
64,256 KB |
testcase_15 | AC | 117 ms
76,672 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 158 ms
77,312 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
def popcount(x): '''xの立っているビット数をカウントする関数 (xは64bit整数)''' # 2bitごとの組に分け、立っているビット数を2bitで表現する x = x - ((x >> 1) & 0x5555555555555555) # 4bit整数に 上位2bit + 下位2bit を計算した値を入れる x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333) x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f # 8bitごと x = x + (x >> 8) # 16bitごと x = x + (x >> 16) # 32bitごと x = x + (x >> 32) # 64bitごと = 全部の合計 return x & 0x0000007f N = int(input()) A = [int(input()) for _ in range(1 << N)] ans = 'Yes' if A[0] != 0: exit(print('No')) for i in range(1, 1 << N): if popcount(i) > 1: tmp = 0 for j in range(N): if i & (1 << j): tmp ^= A[j] if tmp != A[i]: ans = 'No' print(ans)