結果
問題 | No.250 atetubouのzetubou |
ユーザー | pekempey |
提出日時 | 2015-07-24 22:53:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,451 bytes |
コンパイル時間 | 1,318 ms |
コンパイル使用メモリ | 158,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 13:25:50 |
合計ジャッジ時間 | 4,971 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define itall(a) a.begin(), a.end() using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; const double pi = acos(-1); const double eps = 1e-8; template<typename T> inline T sq(T a) { return a * a; } template<typename T> inline T cb(T a) { return a * a * a; } template<typename T> inline bool umin(T &a, const T &b) { return b < a && (a = b, true); } template<typename T> inline bool umax(T &a, const T &b) { return a < b && (a = b, true); } ll fact[2000]; double logfact[2000]; ll comb(ll a, ll b) { return fact[a] / fact[b] / fact[a - b]; } ll logcomb(ll a, ll b) { return logfact[a] - logfact[b] - logfact[a - b]; } int main() { int Q; cin >> Q; fact[0] = 1; rep2 (i, 1, 2000) fact[i] = i * fact[i - 1]; logfact[0] = 0; rep2 (i, 1, 2000) logfact[i] = log(i) + logfact[i - 1]; rep (i, Q) { ll D, X, T; cin >> D >> X >> T; if (logcomb(D + X - 1, D - 1) <= log(T) + eps) { if (comb(D + X - 1, D - 1) <= T) { cout << "AC" << endl; } else { cout << "ZETUBOU" << endl; } } else { cout << "ZETUBOU" << endl; } } }