結果

問題 No.1220 yukipoker
ユーザー yuuiyuui
提出日時 2020-09-04 22:07:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 201,304 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-04 22:24:01
合計ジャッジ時間 5,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 WA -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;

void solve() {
    ll N, M, K;
    cin >> N >> M >> K;

    double ans = (double)(N - K + 1) / (double)(M);
    // cerr << "ans=" << ans << endl;
    rep(i, K) {
        ans = ans * (double)(M * (i + 1)) / (double)(N - i);
        // cerr << "i=" << i << "ans=" << ans << endl;
    }
    // cerr << "ans = " << ans << endl;
    if (ans > 1.5) {
        cout << "Flush"
             << "\n";

    } else {
        cout << "Straight"
             << "\n";
    }
}

int main() {
    ll Q;
    cin >> Q;
    rep(i, Q) {
        solve();
    }

    return 0;
}
0