結果

問題 No.250 atetubouのzetubou
ユーザー lapilapi
提出日時 2019-07-20 21:15:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 1,116 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 108,152 KB
実行使用メモリ 73,716 KB
最終ジャッジ日時 2024-06-09 17:32:50
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
73,552 KB
testcase_01 AC 31 ms
73,468 KB
testcase_02 AC 44 ms
72,748 KB
testcase_03 AC 46 ms
72,772 KB
testcase_04 AC 44 ms
73,716 KB
testcase_05 AC 45 ms
73,144 KB
testcase_06 AC 41 ms
73,464 KB
testcase_07 AC 35 ms
72,964 KB
testcase_08 AC 44 ms
72,828 KB
testcase_09 AC 40 ms
72,800 KB
testcase_10 AC 44 ms
72,724 KB
testcase_11 AC 38 ms
73,300 KB
testcase_12 AC 44 ms
72,844 KB
testcase_13 AC 38 ms
72,788 KB
testcase_14 AC 30 ms
73,336 KB
testcase_15 AC 46 ms
73,296 KB
testcase_16 AC 47 ms
73,160 KB
testcase_17 AC 46 ms
73,608 KB
testcase_18 AC 46 ms
73,180 KB
testcase_19 AC 46 ms
72,868 KB
testcase_20 AC 30 ms
72,712 KB
testcase_21 AC 30 ms
72,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include <iomanip>
#include <cmath>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

const ll M = 10000000000000000LL;

// combination_table
// パスカルの三角形
ll Com[3009][3009]; // C[n][k] = nCk

void combination_table(int N) {
	for (int i = 1; i <= N; i++) {
		for (int j = 0; j <= i; j++) {
			if (j == 0 || j == i) Com[i][j] = 1LL;
			else Com[i][j] = min(M, Com[i - 1][j] + Com[i - 1][j - 1]);
		}
	}
}

int D[10009];
int X[10009];
ll T[10009];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int Q; cin >> Q;
	for (int i = 1; i <= Q; i++) cin >> D[i] >> X[i] >> T[i];

	combination_table(3002);
	//cout << "ok2" << endl;

	for (int i = 1; i <= Q; i++) {
		if (Com[X[i] + D[i] - 1][X[i]] <= T[i]) cout << "AC" << endl;
		else cout << "ZETUBOU" << endl;
	}


	return 0;
}
0