結果
問題 | No.250 atetubouのzetubou |
ユーザー | どらら |
提出日時 | 2015-09-27 14:42:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,227 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 80,404 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 10:50:02 |
合計ジャッジ時間 | 6,039 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
5,248 KB |
testcase_01 | AC | 16 ms
5,376 KB |
testcase_02 | AC | 126 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 120 ms
5,376 KB |
testcase_09 | AC | 89 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 74 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 672 ms
5,376 KB |
testcase_16 | AC | 676 ms
5,376 KB |
testcase_17 | AC | 673 ms
5,376 KB |
testcase_18 | AC | 687 ms
5,376 KB |
testcase_19 | AC | 684 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
ソースコード
#include <algorithm> #include <cstdio> #include <cstdlib> #include <cctype> #include <cmath> #include <iostream> #include <queue> #include <list> #include <stack> #include <map> #include <numeric> #include <set> #include <sstream> #include <string> #include <vector> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; ll gcd(ll a, ll b){return (b==0?a:gcd(b,a%b));} ll lcm(ll a, ll b){return a/gcd(a,b)*b;} ll Comb(int n, int k){ double chk = 0.0; rep(i,k){ chk += log(n-i); chk -= log(k-i); } if(chk / log(10) >= 17) return -1; ll ret1 = 1, ret2 = 1; rep(i,k){ ll a = n-i; ll b = k-i; ret1 *= a; ret2 *= b; ll tmp = gcd(ret1, ret2); ret1 /= tmp; ret2 /= tmp; } return ret1/ret2; } bool calc(ll D, ll X, ll T){ ll res = Comb(X+D-1, D-1); if(res == -1) return false; return res <= T; } int main(){ int Q; cin >> Q; rep(i,Q){ ll D, X, T; cin >> D >> X >> T; if(calc(D, X, T)) cout << "AC" << endl; else cout << "ZETUBOU" << endl; } return 0; }