結果

問題 No.250 atetubouのzetubou
ユーザー 沙耶花沙耶花
提出日時 2022-03-17 20:59:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 4,433 ms
コンパイル使用メモリ 261,688 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-01 20:00:01
合計ジャッジ時間 6,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,180 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 57 ms
52,532 KB
testcase_03 AC 61 ms
50,816 KB
testcase_04 AC 57 ms
50,816 KB
testcase_05 AC 57 ms
50,944 KB
testcase_06 AC 53 ms
50,816 KB
testcase_07 AC 43 ms
50,816 KB
testcase_08 AC 54 ms
50,816 KB
testcase_09 AC 51 ms
50,816 KB
testcase_10 AC 58 ms
50,816 KB
testcase_11 AC 48 ms
50,944 KB
testcase_12 AC 55 ms
50,816 KB
testcase_13 AC 46 ms
50,944 KB
testcase_14 AC 35 ms
50,816 KB
testcase_15 AC 61 ms
50,944 KB
testcase_16 AC 56 ms
51,072 KB
testcase_17 AC 58 ms
50,944 KB
testcase_18 AC 57 ms
50,816 KB
testcase_19 AC 57 ms
50,944 KB
testcase_20 AC 35 ms
51,072 KB
testcase_21 AC 34 ms
50,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000000000005

long long dp[3005][3505];	

int main(){
	dp[0][0] = 1;
	rep(i,3004){
		rep(j,3004){
			if(dp[i][j]){
				dp[i+1][j] = min((long long)Inf,dp[i][j]+dp[i+1][j]);
				dp[i+1][j+1] = min((long long)Inf,dp[i][j]+dp[i+1][j+1]);
			}
		}
	}
	int q;
	cin>>q;
	rep(_,q){
		long long D,X,T;
		cin>>D>>X>>T;
		if(dp[D+X-1][D-1]<=T)cout<<"AC"<<endl;
		else cout<<"ZETUBOU"<<endl;
	}
		
	return 0;
}
0