結果

問題 No.589 Counting Even
ユーザー aaaaaaaaaa
提出日時 2017-11-04 00:23:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 841 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 71,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 20:59:49
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cstring>
#include <math.h>
#include <algorithm>
#include <vector>
#include <string>
#include <stdlib.h>
#include <queue>
#include <stack>
#include <utility>
#define rep(i,n) for(int i=0;i<n;i++)
#define rrep(i,n) for(int i=n-1;i>=0;i--)
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define ll long long
#define INF 1000000001
#define mod 1000000007
using namespace std;

int main(){
	//cin.tie(0);
	//ios::sync_with_stdio(false);
	
	ll n;
	cin>>n;
	if(n==0){
		cout<<0<<endl;
		return 0;
	}
	ll n2=n;
	vector<ll> x;
	ll i=2;
	x.push_back(1);
	while(x[x.size()-1]<=n){
		x.push_back(i);
		i*=2;
	}
	x.pop_back();
	reverse(x.begin(),x.end());
	rep(i,x.size()){
		cout<<x[i]<<endl;
	}
	ll ans=1;
	rep(i,x.size()){
		if(n>=x[i]){
			ans*=2;
			n-=x[i];
		}
	}
	//ans/=2;
	cout<<n2+1-ans<<endl;

}




0