結果

問題 No.250 atetubouのzetubou
ユーザー data9824data9824
提出日時 2015-08-14 08:58:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 57,908 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-07-18 09:18:00
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
21,116 KB
testcase_01 AC 26 ms
21,168 KB
testcase_02 AC 53 ms
20,992 KB
testcase_03 AC 65 ms
21,200 KB
testcase_04 AC 56 ms
20,992 KB
testcase_05 AC 56 ms
21,248 KB
testcase_06 AC 50 ms
20,976 KB
testcase_07 AC 38 ms
21,120 KB
testcase_08 AC 55 ms
21,120 KB
testcase_09 AC 47 ms
21,076 KB
testcase_10 AC 54 ms
21,120 KB
testcase_11 AC 44 ms
21,200 KB
testcase_12 AC 51 ms
21,196 KB
testcase_13 AC 41 ms
21,056 KB
testcase_14 AC 17 ms
21,112 KB
testcase_15 AC 38 ms
21,020 KB
testcase_16 AC 38 ms
21,120 KB
testcase_17 AC 39 ms
20,992 KB
testcase_18 AC 37 ms
21,152 KB
testcase_19 AC 39 ms
21,196 KB
testcase_20 AC 7 ms
20,992 KB
testcase_21 AC 6 ms
21,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

const long long MAX_T = 1000000000000000LL;
long long cache[1501][1501];

long long patterns(int x, int d) {
	if (d == 1) {
		return 1;
	}
	if (cache[x][d] >= 0) {
		return cache[x][d];
	}
	long long result = 0;
	for (int i = 0; i <= x; ++i) {
		result += patterns(x - i, d - 1);
		if (result > MAX_T) {
			result = MAX_T + 1;
			break;
		}
	}
	cache[x][d] = result;
	return result;
}

int main() {
	fill(&cache[0][0], &cache[1500][1500] + 1, -1);
	int q;
	cin >> q;
	for (int i = 0; i < q; ++i) {
		int d, x;
		long long t;
		cin >> d >> x >> t;
		long long p = patterns(x, d);
		cout << (p <= t ? "AC" : "ZETUBOU") << endl;
	}
	return 0;
}
0