結果

問題 No.2939 Sigma Popcount Problem
ユーザー PNJPNJ
提出日時 2024-10-18 22:01:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-10-18 22:44:43
合計ジャッジ時間 4,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,600 KB
testcase_01 AC 36 ms
53,332 KB
testcase_02 AC 36 ms
53,316 KB
testcase_03 AC 34 ms
52,932 KB
testcase_04 AC 34 ms
52,212 KB
testcase_05 AC 35 ms
51,928 KB
testcase_06 AC 36 ms
52,204 KB
testcase_07 AC 36 ms
52,408 KB
testcase_08 AC 325 ms
76,172 KB
testcase_09 AC 171 ms
76,236 KB
testcase_10 AC 220 ms
76,104 KB
testcase_11 AC 216 ms
76,068 KB
testcase_12 AC 193 ms
76,112 KB
testcase_13 AC 172 ms
76,428 KB
testcase_14 AC 160 ms
76,372 KB
testcase_15 AC 345 ms
76,096 KB
testcase_16 AC 64 ms
71,368 KB
testcase_17 AC 334 ms
76,324 KB
testcase_18 AC 313 ms
76,136 KB
testcase_19 AC 332 ms
76,344 KB
testcase_20 AC 48 ms
65,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  N = int(input())
  ans = 0
  s = 0
  for j in range(40,0,-1):
    if (N >> j) & 1:
      c = 1 << (j - 1)
      ans += (2 * s + j) * c
      s += 1
  if N % 2:
    ans += s
  s += N % 2
  print(ans + s)
0