結果
問題 | No.1296 OR or NOR |
ユーザー | Kiri8128 |
提出日時 | 2020-06-25 23:54:57 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 104,796 KB |
最終ジャッジ日時 | 2024-06-11 20:56:57 |
合計ジャッジ時間 | 5,641 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,096 KB |
testcase_01 | AC | 33 ms
52,352 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 138 ms
104,628 KB |
testcase_21 | AC | 134 ms
104,700 KB |
testcase_22 | AC | 110 ms
100,108 KB |
testcase_23 | AC | 120 ms
100,028 KB |
testcase_24 | AC | 117 ms
99,336 KB |
testcase_25 | AC | 124 ms
99,260 KB |
testcase_26 | AC | 137 ms
104,480 KB |
testcase_27 | AC | 138 ms
104,796 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
# 愚直チェック def popcnt(n): c = (n & 0x55555555) + ((n>>1) & 0x55555555) c = (c & 0x33333333) + ((c>>2) & 0x33333333) c = (c & 0x0f0f0f0f) + ((c>>4) & 0x0f0f0f0f) c = (c & 0x00ff00ff) + ((c>>8) & 0x00ff00ff) c = (c & 0x0000ffff) + ((c>>16) & 0x0000ffff) return c N = int(input()) if N > 20: print(1 // 0) A = [int(a) for a in input().split()] S = {} m = (1 << 60) - 1 for i in range(1 << N): s = 0 for j, a in enumerate(A): s |= a if i >> j & 1: s ^= m if s in S: S[s] = min(S[s], popcnt(i)) else: S[s] = popcnt(i) Q = int(input()) for a in [int(a) for a in input().split()]: print(S[a] if a in S else -1)