結果

問題 No.420 mod2漸化式
ユーザー kapokapo
提出日時 2016-09-10 00:13:08
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,231 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 81,404 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-16 18:59:08
合計ジャッジ時間 55,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
10,496 KB
testcase_01 TLE -
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
8,576 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 3 ms
8,704 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 25 ms
8,576 KB
testcase_08 AC 92 ms
10,496 KB
testcase_09 AC 295 ms
8,704 KB
testcase_10 AC 811 ms
10,496 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
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 #

#define _CRT_SECURE_NO_WARNINGS // #pragma warning(disable:4996)
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <queue>
#include <functional>
#include <sstream>
#include <cmath>
#include <set>
#include <map>
#include <stack>
using namespace std; 

#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>=(b);i--)
#define pb push_back
#define mp(a,b) make_pair(a,b)
#define all(a) a.begin(),a.end()
#define len(x) ((int)(x).size())
#define tmax(a,b,c) max((a),max((b),(c)))
#define tmin(a,b,c) min((a),min((b),(c)))
#define debug(x) cerr << #x << " is " << x << endl;

typedef pair<int, int> Pii;
typedef map<int, int> Mii;
typedef vector<int> Vi;
typedef vector<vector<int> > VVi;
typedef long long ll;
const int inf = 2e9;
const ll ll_inf = 1e17;
const int mod = 1e9 + 7;
const long double eps = 1e-10;

ll ans = 0;
ll sum = 0;
int x = 0;

void calc(ll s, int n, int cnt) {
	if (n == 32 && cnt < x) return;
	if (cnt == x) {
		//debug(s);
		ans++;
		sum += s;
		return;
	}
	ll a = pow(2,n);
	calc(s+a, n+1, cnt+1);
	calc(s, n+1, cnt);
}

int main()
{
	cin >> x;
	calc(0, 1, 0);

	cout << ans << " " << sum/2 << endl;

	return 0;
}
0