結果

問題 No.420 mod2漸化式
ユーザー olpheolphe
提出日時 2016-11-18 21:39:19
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 53,160 KB
実行使用メモリ 16,848 KB
最終ジャッジ日時 2024-11-26 06:14:59
合計ジャッジ時間 48,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 TLE -
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 1 ms
10,020 KB
testcase_04 AC 2 ms
10,020 KB
testcase_05 AC 2 ms
10,016 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 3 ms
10,020 KB
testcase_08 AC 10 ms
13,636 KB
testcase_09 AC 28 ms
10,016 KB
testcase_10 AC 72 ms
13,640 KB
testcase_11 AC 179 ms
9,892 KB
testcase_12 AC 392 ms
13,636 KB
testcase_13 AC 752 ms
9,892 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
using namespace std;

const long long int UP = 2147483647;
//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,}
int N;
long long int ans;
int fig;

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

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