結果

問題 No.1220 yukipoker
ユーザー finefine
提出日時 2020-09-04 22:00:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 675 bytes
コンパイル時間 1,481 ms
コンパイル使用メモリ 166,732 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-04 22:17:52
合計ジャッジ時間 5,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int q;
    cin >> q;

    for (int i = 0; i < q; i++) {
        int n, m, k;
        cin >> n >> m >> k;

        // F = M (N, K) K!
        // S = K! (N - K + 1) M^K
        // F / S = (N, K) / (N - K + 1) M^(K - 1)
        long double hoge = n;
        hoge /= (n - k + 1);
        hoge /= k;
        for (int i = 1; i < k; i++) {
            hoge *= n - i;
            hoge /= m;
            hoge /= k - i;
        }

        cout << (hoge < 1 ? "Flush" : "Straight") << newl;
    }

    return 0;
}
0