結果

問題 No.2939 Sigma Popcount Problem
ユーザー timitimi
提出日時 2024-10-18 21:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 4,853 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,284 KB
最終ジャッジ日時 2024-10-18 22:23:21
合計ジャッジ時間 5,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,108 KB
testcase_01 AC 35 ms
52,164 KB
testcase_02 AC 35 ms
52,444 KB
testcase_03 AC 36 ms
52,956 KB
testcase_04 AC 36 ms
52,488 KB
testcase_05 AC 35 ms
52,492 KB
testcase_06 AC 36 ms
52,188 KB
testcase_07 AC 35 ms
52,796 KB
testcase_08 AC 419 ms
75,976 KB
testcase_09 AC 202 ms
76,028 KB
testcase_10 AC 268 ms
76,084 KB
testcase_11 AC 274 ms
76,124 KB
testcase_12 AC 236 ms
76,284 KB
testcase_13 AC 209 ms
76,100 KB
testcase_14 AC 187 ms
76,168 KB
testcase_15 AC 451 ms
76,092 KB
testcase_16 AC 57 ms
65,592 KB
testcase_17 AC 445 ms
76,264 KB
testcase_18 AC 411 ms
76,208 KB
testcase_19 AC 437 ms
75,960 KB
testcase_20 AC 50 ms
65,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
  N=int(input())
  N+=1
  ans=0
  a,b=1,2
  for i in range(40):
    ans+=(N//b)*a+max(0,N%b-a) 
    a*=2;b*=2 
  print(ans)
0