結果

問題 No.1220 yukipoker
ユーザー kotatsugamekotatsugame
提出日時 2020-10-09 18:36:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 68,224 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 07:53:04
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 102 ms
5,376 KB
testcase_12 AC 107 ms
5,376 KB
testcase_13 AC 224 ms
5,376 KB
testcase_14 AC 212 ms
5,376 KB
testcase_15 AC 137 ms
5,376 KB
testcase_16 AC 158 ms
5,376 KB
testcase_17 AC 92 ms
5,376 KB
testcase_18 AC 118 ms
5,376 KB
testcase_19 AC 225 ms
5,376 KB
testcase_20 AC 220 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<cmath>
using namespace std;
int Q;
double F[1<<17];
main()
{
	for(int i=1;i<1<<17;i++)F[i]=F[i-1]+log(i);
	cin>>Q;
	for(;Q--;)
	{
		int N,M,K;
		cin>>N>>M>>K;
		double now=F[N]-F[N-K]-F[K]-log(N-K+1)-(K-1)*log(M);
		cout<<(now<0?"Flush":"Straight")<<endl;
	}
}
0