結果
問題 | No.1220 yukipoker |
ユーザー | kappybar |
提出日時 | 2020-09-04 22:48:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,213 bytes |
コンパイル時間 | 5,874 ms |
コンパイル使用メモリ | 394,888 KB |
実行使用メモリ | 112,368 KB |
最終ジャッジ日時 | 2024-05-05 03:23:03 |
合計ジャッジ時間 | 33,258 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,980 ms
112,368 KB |
testcase_01 | AC | 1,961 ms
56,224 KB |
testcase_02 | AC | 1,954 ms
56,312 KB |
testcase_03 | AC | 1,961 ms
56,168 KB |
testcase_04 | AC | 1,969 ms
56,152 KB |
testcase_05 | AC | 1,980 ms
56,308 KB |
testcase_06 | AC | 1,964 ms
56,252 KB |
testcase_07 | AC | 1,952 ms
56,296 KB |
testcase_08 | AC | 1,959 ms
56,228 KB |
testcase_09 | AC | 1,980 ms
56,292 KB |
testcase_10 | AC | 1,975 ms
56,352 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; #include <boost/multiprecision/cpp_dec_float.hpp> #include <boost/multiprecision/cpp_int.hpp> namespace mp = boost::multiprecision; // 任意長整数型 using Bint = mp::cpp_int; // 仮数部が1024ビットの浮動小数点数型(TLEしたら小さくする) using Real = mp::number<mp::cpp_dec_float<1024>>; Real fact[100001]; Real mypow(Real x, long long n) { Real ret = 1; while (n > 0) { if (n & 1) ret = (ret * x) ; x = (x * x) ; n >>= 1; } return ret; } int main(){ fact[0] = 1; for(int i=1;i<100001;i++) fact[i] = fact[i-1] * (Real)i; int q; cin >> q; while(q--){ int n,m,k; cin >> n >> m >> k; Real com = (fact[n] / fact[k]) / fact[n-k]; Real p = (Real)(n-k+1) * mypow(m,k-1); if(com < p) cout << "Flush" << endl; else cout << "Straight" << endl; } return 0; }