結果
問題 | No.250 atetubouのzetubou |
ユーザー | Tatsuro Miyazaki |
提出日時 | 2018-12-19 03:18:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,632 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 77,372 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-09-25 07:53:54 |
合計ジャッジ時間 | 2,843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 31 ms
6,944 KB |
testcase_21 | AC | 30 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <cstdlib> #include <cstdio> #include <cmath> #include <algorithm> #include <map> #include <stack> #include <queue> #include <set> #include <cstring> using namespace std; // ascending order #define vsort(v) sort(v.begin(), v.end()) // descending order #define vsort_r(v) sort(v.begin(), v.end(), greater<int>()) #define vunique(v) v.erase(unique(v.begin(), v.end()), v.end()) #define mp make_pair #define ts(x) to_string(x) #define rep(i, a, b) for(int i = (int)a; i < (int)b; i++) #define repm(i, a, b) for(int i = (int)a; i > (int)b; i--) #define bit(a) bitset<8>(a) #define des_priority_queue priority_queue<int, vector<int>, greater<int> > typedef long long ll; typedef pair<int, int> P; const ll INF = 1e18; const int mod = 1e9 + 7; const int MAX = 200002; ll fact[MAX], invfact[MAX]; #define MAX_V 1000000 ll mod_pow(ll a, ll n, ll mod) { ll res = 1; while(n > 0) { if(n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } ll mod_inverse(ll a, ll m) { return mod_pow(a, m - 2, m); } ll nCr(ll n, ll r) { return fact[n] * invfact[r] % mod * invfact[n - r] % mod; } void init() { fact[0] = invfact[0] = 1; rep(i, 1, MAX) { fact[i] = (fact[i - 1] * i) % mod; invfact[i] = mod_inverse(fact[i], mod); } } int main(){ cin.tie(0); ios::sync_with_stdio(false); init(); int Q; cin >> Q; vector<string> rsl; rep(i, 0, Q) { int D, X; ll T; cin >> D >> X >> T; ll tmp = nCr(X + D - 1, D - 1); if(tmp > T) rsl.push_back("ZETUBOU"); else rsl.push_back("AC"); } rep(i, 0, rsl.size()) cout << rsl[i] << endl; }