結果
問題 | No.250 atetubouのzetubou |
ユーザー | kmjp |
提出日時 | 2015-07-24 22:30:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 53 ms / 5,000 ms |
コード長 | 1,294 bytes |
コンパイル時間 | 1,221 ms |
コンパイル使用メモリ | 159,468 KB |
実行使用メモリ | 50,048 KB |
最終ジャッジ日時 | 2024-07-08 13:11:23 |
合計ジャッジ時間 | 3,358 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
50,048 KB |
testcase_01 | AC | 39 ms
50,048 KB |
testcase_02 | AC | 52 ms
50,048 KB |
testcase_03 | AC | 50 ms
50,048 KB |
testcase_04 | AC | 49 ms
49,920 KB |
testcase_05 | AC | 51 ms
50,048 KB |
testcase_06 | AC | 51 ms
50,048 KB |
testcase_07 | AC | 42 ms
50,048 KB |
testcase_08 | AC | 50 ms
50,048 KB |
testcase_09 | AC | 45 ms
49,920 KB |
testcase_10 | AC | 50 ms
50,048 KB |
testcase_11 | AC | 44 ms
49,920 KB |
testcase_12 | AC | 50 ms
50,048 KB |
testcase_13 | AC | 43 ms
50,048 KB |
testcase_14 | AC | 37 ms
50,048 KB |
testcase_15 | AC | 52 ms
50,048 KB |
testcase_16 | AC | 53 ms
49,920 KB |
testcase_17 | AC | 53 ms
49,920 KB |
testcase_18 | AC | 51 ms
49,920 KB |
testcase_19 | AC | 50 ms
50,048 KB |
testcase_20 | AC | 36 ms
49,920 KB |
testcase_21 | AC | 37 ms
50,048 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<to;x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- ll comb(int P_,int Q_) { static const int N_=3020; static ll C_[N_][N_]; if(C_[0][0]==0) { int i,j; FOR(i,N_) C_[i][0]=C_[i][i]=1; for(i=1;i<N_;i++) for(j=1;j<i;j++) { C_[i][j]=(C_[i-1][j-1]+C_[i-1][j]); if(C_[i][j]>=1LL<<60) C_[i][j]=1LL<<60; } } if(P_<0 || P_>N_ || Q_<0 || Q_>P_) return 0; return C_[P_][Q_]; } ll hcomb(int P_,int Q_) { return (P_==0&&Q_==0)?1:comb(P_+Q_-1,Q_);}; ll mul(ll a,ll b) { if(a*b<a) return 1LL<<60; return a*b; } int Q; ll D,X; ll T; void solve() { int i,j,k,l,r,x,y; string s; cin>>Q; FOR(i,Q) { cin>>D>>X>>T; if(hcomb(D,X)<=T) cout<<"AC"<<endl; else cout<<"ZETUBOU"<<endl; } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }