結果

問題 No.2939 Sigma Popcount Problem
ユーザー daiotadaiota
提出日時 2024-10-18 22:35:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 166,832 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 22:52:35
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge7
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 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,816 KB
testcase_08 AC 173 ms
6,820 KB
testcase_09 AC 75 ms
6,820 KB
testcase_10 AC 105 ms
6,816 KB
testcase_11 AC 106 ms
6,816 KB
testcase_12 AC 90 ms
6,820 KB
testcase_13 AC 76 ms
6,816 KB
testcase_14 AC 65 ms
6,824 KB
testcase_15 AC 186 ms
6,816 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 178 ms
6,816 KB
testcase_18 AC 157 ms
6,816 KB
testcase_19 AC 195 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:42:26: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized]
   42 |                 for(i=1;i<=r;i++){
      |                         ~^~~
main.cpp:32:20: note: 'r' was declared here
   32 |                 ll r;
      |                    ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)



ll a[50];



int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;



	a[0]=1;
	for(i=1;i<50;i++) a[i]=2*a[i-1];


	int T;
	cin >> T;
	while(T--){

		ll N;
		cin >> N;

		ll r;
		for(i=0;i<50;i++){
			if(a[i]>N){
				r=i;
				break;
			}
		}


		ll ans=0;
		for(i=1;i<=r;i++){
			ll n=N;
			ll x=n/a[i],y=n%a[i];

			ans+=a[i]/2*x+max(0LL,y-a[i-1]+1);
		}


		cout << ans << endl;



	}





	return 0;

}
0