結果

問題 No.2939 Sigma Popcount Problem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-18 21:24:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 76,320 KB
最終ジャッジ日時 2024-10-18 21:50:31
合計ジャッジ時間 6,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,272 KB
testcase_01 AC 35 ms
52,660 KB
testcase_02 AC 34 ms
52,128 KB
testcase_03 AC 34 ms
52,496 KB
testcase_04 AC 35 ms
53,104 KB
testcase_05 AC 34 ms
52,308 KB
testcase_06 AC 35 ms
52,624 KB
testcase_07 AC 37 ms
52,740 KB
testcase_08 AC 530 ms
75,964 KB
testcase_09 AC 243 ms
76,296 KB
testcase_10 AC 319 ms
76,320 KB
testcase_11 AC 327 ms
76,288 KB
testcase_12 AC 281 ms
76,304 KB
testcase_13 AC 243 ms
76,068 KB
testcase_14 AC 224 ms
76,156 KB
testcase_15 AC 549 ms
76,164 KB
testcase_16 AC 59 ms
66,156 KB
testcase_17 AC 513 ms
76,120 KB
testcase_18 AC 479 ms
76,200 KB
testcase_19 AC 545 ms
76,024 KB
testcase_20 AC 42 ms
59,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
  n=int(input())
  c=0
  for i in range(60):
    c+=((n+1)//(1<<(i+1)))*(1<<i)
    if ((n+1)%(1<<(i+1)))>=(1<<i):
      c+=(n+1)%(1<<i)
  print(c)
0