結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 96 ms
5,376 KB
testcase_12 AC 103 ms
5,376 KB
testcase_13 AC 213 ms
5,376 KB
testcase_14 AC 212 ms
5,376 KB
testcase_15 AC 131 ms
5,376 KB
testcase_16 AC 155 ms
5,376 KB
testcase_17 AC 87 ms
5,376 KB
testcase_18 AC 115 ms
5,376 KB
testcase_19 AC 218 ms
5,376 KB
testcase_20 AC 221 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 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