結果

問題 No.1220 yukipoker
ユーザー finefine
提出日時 2020-09-04 22:00:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 675 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 165,584 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-26 12:48:08
合計ジャッジ時間 32,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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