結果

問題 No.250 atetubouのzetubou
ユーザー koyumeishikoyumeishi
提出日時 2015-07-24 23:40:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 786 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 78,168 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-07-16 00:26:01
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
128,384 KB
testcase_01 AC 104 ms
128,384 KB
testcase_02 AC 123 ms
128,256 KB
testcase_03 WA -
testcase_04 AC 122 ms
128,256 KB
testcase_05 AC 122 ms
128,256 KB
testcase_06 AC 117 ms
128,256 KB
testcase_07 AC 107 ms
128,384 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 120 ms
128,384 KB
testcase_13 AC 113 ms
128,384 KB
testcase_14 AC 102 ms
128,256 KB
testcase_15 AC 124 ms
128,384 KB
testcase_16 AC 122 ms
128,256 KB
testcase_17 AC 122 ms
128,256 KB
testcase_18 AC 122 ms
128,256 KB
testcase_19 AC 122 ms
128,256 KB
testcase_20 AC 104 ms
128,256 KB
testcase_21 AC 103 ms
128,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

int main(){
	int q;
	cin >> q;

	vector<vector<long long>> dp(4000, vector<long long>(4000,0));
	dp[0][0] = 1;
	for(int i=1; i<4000; i++){
		for(int j=0; j<=i; j++){
			if((dp[i-1][j] < 0) || (j>0 && dp[i-1][j] < 0) ){
				dp[i][j] = -1;
				continue;
			}

			dp[i][j] = dp[i-1][j] + (j>0?dp[i-1][j-1]:0);
			if(dp[i][j] >= 1e17) dp[i][j] = -1;
		}
	}

	while(q--){
		long long d,x;
		long long t;
		cin >> d >> x >> t;

		//cerr << dp[d+x-1][x] << endl;
		if(dp[d+x-1][x] >= 0 && dp[d+x-1][x] <= t){
			cout << "AC" << endl;
		}else{
			cout << "ZETUBOU" << endl;
		}

	}
	return 0;
}
0