結果
問題 | No.250 atetubouのzetubou |
ユーザー | dnish |
提出日時 | 2018-06-08 10:37:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 729 ms |
コンパイル使用メモリ | 83,100 KB |
実行使用メモリ | 21,408 KB |
最終ジャッジ日時 | 2024-06-30 10:37:30 |
合計ジャッジ時間 | 4,359 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 12 ms
21,172 KB |
testcase_21 | AC | 13 ms
21,228 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <cstring> #include <deque> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <utility> #include <vector> #define p(s) cout<<(s)<<endl #define REP(i,n,N) for(int i=n;i<N;i++) #define RREP(i,n,N) for(int i=N-1;i>=n;i--) #define CK(n,a,b) ((a)<=(n)&&(n)<(b)) #define F first #define S second typedef long long ll; using namespace std; const int inf=1e9+7; ll Q, D, X, T; ll comb[1515][1515]; void combinationDP(int n) { for (int i = 1; i < n + 1; i++) { for (int j = 0; j < n + 1; j++) { if (j == 0 || i == j) comb[i][j] = 1; else comb[i][j] = comb[i - 1][j - 1] + comb[i - 1][j]; if(comb[i][j]>1e15) comb[i][j]=1e15+1; } } } int main(){ combinationDP(1500); cin>>Q; REP(i,0,Q){ cin>>D>>X>>T; if(comb[(X+D-1)][X]<=T){ p("AC"); }else{ p("ZETUBOU"); } } return 0; }