結果

問題 No.420 mod2漸化式
ユーザー olpheolphe
提出日時 2016-11-18 21:59:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 956 ms / 1,000 ms
コード長 882 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 54,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 17:19:53
合計ジャッジ時間 9,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 880 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 81 ms
5,376 KB
testcase_12 AC 170 ms
5,376 KB
testcase_13 AC 314 ms
5,376 KB
testcase_14 AC 504 ms
5,376 KB
testcase_15 AC 710 ms
5,376 KB
testcase_16 AC 880 ms
5,376 KB
testcase_17 AC 956 ms
5,376 KB
testcase_18 AC 916 ms
5,376 KB
testcase_19 AC 771 ms
5,376 KB
testcase_20 AC 568 ms
5,376 KB
testcase_21 AC 372 ms
5,376 KB
testcase_22 AC 211 ms
5,376 KB
testcase_23 AC 106 ms
5,376 KB
testcase_24 AC 47 ms
5,376 KB
testcase_25 AC 19 ms
5,376 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
using namespace std;

const long long int UP = 2147483647;
long long int log_num[32] = { 1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536,131072,262144,524288,1048576,2097152,4194304,8388608,16777216,33554432,67108864,134217728,268435456,536870912,1073741824,2147483648 };
int N;
long long int ans;
int fig;

void search(long long int num,int point ,int cap) {
	if (num > UP)return ;
	if (num == 0) {
		search(1, 1,30);
		if (N == 0) {
			fig++;
		}
		return ;
	}
	if (point < N) {
		if(cap-1+point>=N)search(num * 2, point,cap-1);

		if(cap+point>=N)search(num * 2 + 1, point + 1,cap-1);
	}
	else if (point == N) {
		/*for (int i = cap; i >= 0; i--) {
			ans += num;
			num *= 2;
		}*/
		ans += num*log_num[cap] * 2 - num;
		fig+=cap+1;
	}
	return ;
}

int main() {
	cin >> N;
	search(0, 0,31);
	cout << fig << " " << ans << "\n";
	return 0;
}
0