結果

問題 No.420 mod2漸化式
ユーザー kurenai3110kurenai3110
提出日時 2016-09-09 23:23:19
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 620 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 766,256 KB
最終ジャッジ日時 2024-11-16 18:38:44
合計ジャッジ時間 54,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,496 KB
testcase_01 MLE -
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
443,796 KB
testcase_04 AC 3 ms
10,496 KB
testcase_05 MLE -
testcase_06 WA -
testcase_07 MLE -
testcase_08 AC 47 ms
14,848 KB
testcase_09 MLE -
testcase_10 AC 410 ms
79,884 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
#include <queue>
using namespace std;

int main()
{
	int x;
	long long sum = 0,cnt=0;
	cin >> x;
	queue<pair<int,int> > que;
	que.push(make_pair(1,1));

	while (que.size()!=0) {
		long long a, b;
		pair<long long, int> pr;
		pr = que.front();
		que.pop();
		if (pr.second == x) {
			sum += pr.first;
			cnt++;
		}
		a = pr.first * 2;
		b = pr.first * 2 + 1;
		if (a < INT32_MAX) que.push(make_pair(a, pr.second));
		if (b < INT32_MAX && pr.second < x)que.push(make_pair(b, pr.second + 1));
	}

	cout << cnt << " " << sum << endl;

    return 0;
}
0