結果

問題 No.1220 yukipoker
ユーザー kappybarkappybar
提出日時 2020-09-04 22:48:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,213 bytes
コンパイル時間 6,404 ms
コンパイル使用メモリ 393,500 KB
実行使用メモリ 112,404 KB
最終ジャッジ日時 2024-11-26 20:44:05
合計ジャッジ時間 72,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0