結果

問題 No.420 mod2漸化式
ユーザー olphe
提出日時 2016-11-18 21:47:24
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 580 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 54,420 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 06:16:39
合計ジャッジ時間 13,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 29 TLE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
using namespace std;

const long long int UP = 2147483647;
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)search(num * 2 + 1, point + 1,cap-1);
	}
	else if (point == N) {
		ans += num;
		fig++;
		search(num * 2, point,cap-1);
	}
	return ;
}

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