結果

問題 No.1220 yukipoker
ユーザー yudedakoyudedako
提出日時 2020-09-05 01:21:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 107,432 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 21:27:11
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 92 ms
5,248 KB
testcase_12 AC 94 ms
5,248 KB
testcase_13 AC 186 ms
5,248 KB
testcase_14 AC 185 ms
5,248 KB
testcase_15 AC 123 ms
5,248 KB
testcase_16 AC 148 ms
5,248 KB
testcase_17 AC 78 ms
5,248 KB
testcase_18 AC 109 ms
5,248 KB
testcase_19 AC 193 ms
5,248 KB
testcase_20 AC 195 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <vector>
#include <iostream>
#include <algorithm>
#include <set>
#include <iomanip>
#include <numeric>
#include <queue>
#include <string>
#include <map>
#include <fstream>
#include <cassert>

double log_combination(const int n, const int k) {
	return (n + 0.5) * std::log((n + 0.5) / (n - k + 0.5)) + k * std::log((n - k + 0.5) / k) - 0.5 * std::log(std::acos(-1) * 2 * k);
}
int main() {
	int q; std::cin >> q;
	for (auto i = 0; i < q; ++i) {
		int n, m, k; std::cin >> n >> m >> k;
		const double flush = std::log(m) + log_combination(n, k);
		const double straight = std::log(n - k + 1) + k * std::log(m);
		if (flush < straight) {
			std::cout << "Flush\n";
		}
		else {
			std::cout << "Straight\n";
		}
	}
}
0