結果

問題 No.2939 Sigma Popcount Problem
ユーザー にしろにしろ
提出日時 2024-10-18 23:59:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 5,038 ms
コンパイル使用メモリ 308,956 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-19 00:01:20
合計ジャッジ時間 8,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 197 ms
6,816 KB
testcase_09 AC 82 ms
6,816 KB
testcase_10 AC 118 ms
6,816 KB
testcase_11 AC 123 ms
6,820 KB
testcase_12 AC 103 ms
6,816 KB
testcase_13 AC 87 ms
6,816 KB
testcase_14 AC 75 ms
6,820 KB
testcase_15 AC 213 ms
6,816 KB
testcase_16 AC 5 ms
6,820 KB
testcase_17 AC 219 ms
6,824 KB
testcase_18 AC 211 ms
6,820 KB
testcase_19 AC 218 ms
6,824 KB
testcase_20 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using ld = long double;
using mint = atcoder::modint1000000007;
const ll inf = 9e18;

int main(){

	ios::sync_with_stdio(0);
	cin.tie(0);
    
    ll t;
    cin >> t;

    for(ll i=0;i<t;i++){
        ll n;
        cin >> n;
        ll ans=0;
        for(ll b=0;b<60;b++){
            ans+=(n/(1ll<<(b+1)))*(1ll<<b);
            ans+=max(0ll,n%(1ll<<(b+1))-(1ll<<b)+1);
        }
        cout << ans << endl;
    }

}
0