結果

問題 No.2071 Shift and OR
ユーザー flygonflygon
提出日時 2022-09-16 21:34:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 103,532 KB
最終ジャッジ日時 2024-06-01 12:02:50
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,768 KB
testcase_01 AC 38 ms
53,476 KB
testcase_02 AC 40 ms
52,572 KB
testcase_03 AC 39 ms
52,288 KB
testcase_04 AC 42 ms
52,592 KB
testcase_05 AC 41 ms
51,824 KB
testcase_06 AC 40 ms
52,464 KB
testcase_07 WA -
testcase_08 AC 41 ms
52,700 KB
testcase_09 AC 40 ms
53,008 KB
testcase_10 AC 41 ms
53,500 KB
testcase_11 AC 42 ms
52,876 KB
testcase_12 AC 40 ms
53,500 KB
testcase_13 AC 40 ms
52,432 KB
testcase_14 AC 41 ms
52,708 KB
testcase_15 AC 41 ms
52,552 KB
testcase_16 AC 40 ms
52,396 KB
testcase_17 AC 40 ms
53,068 KB
testcase_18 WA -
testcase_19 AC 41 ms
52,412 KB
testcase_20 AC 40 ms
52,584 KB
testcase_21 AC 39 ms
52,852 KB
testcase_22 AC 39 ms
53,072 KB
testcase_23 AC 85 ms
99,184 KB
testcase_24 AC 50 ms
63,856 KB
testcase_25 AC 64 ms
78,684 KB
testcase_26 AC 66 ms
82,092 KB
testcase_27 AC 47 ms
61,316 KB
testcase_28 AC 88 ms
103,532 KB
testcase_29 AC 89 ms
103,372 KB
testcase_30 AC 39 ms
52,464 KB
testcase_31 AC 40 ms
52,332 KB
testcase_32 AC 40 ms
52,304 KB
testcase_33 AC 42 ms
52,616 KB
testcase_34 AC 41 ms
54,216 KB
testcase_35 AC 40 ms
52,304 KB
testcase_36 AC 39 ms
53,484 KB
testcase_37 AC 40 ms
53,352 KB
testcase_38 AC 41 ms
52,392 KB
testcase_39 AC 40 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
cnt = 0
#n <= 1<<60 以下くらい
def popcnt(n):
  c = (n & 0x5555555555555555) + ((n>>1) & 0x5555555555555555)
  c = (c & 0x3333333333333333) + ((c>>2) & 0x3333333333333333)
  c = (c & 0x0f0f0f0f0f0f0f0f) + ((c>>4) & 0x0f0f0f0f0f0f0f0f)
  c = (c & 0x00ff00ff00ff00ff) + ((c>>8) & 0x00ff00ff00ff00ff)
  c = (c & 0x0000ffff0000ffff) + ((c>>16) & 0x0000ffff0000ffff)
  c = (c & 0x00000000ffffffff) + ((c>>32) & 0x00000000ffffffff)
  return c
for i in range(n):
  cnt += popcnt(a[i])
ans = 0
for i in range(min(cnt, 16)):
  ans += pow(2, 15-i)

print(ans)
0