結果

問題 No.1220 yukipoker
ユーザー takakintakakin
提出日時 2020-09-09 23:03:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-05-09 19:37:02
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
14,848 KB
testcase_01 AC 56 ms
14,720 KB
testcase_02 AC 60 ms
14,720 KB
testcase_03 AC 53 ms
14,848 KB
testcase_04 AC 55 ms
14,720 KB
testcase_05 AC 52 ms
14,592 KB
testcase_06 AC 51 ms
14,848 KB
testcase_07 AC 51 ms
14,592 KB
testcase_08 AC 52 ms
14,592 KB
testcase_09 AC 54 ms
14,592 KB
testcase_10 AC 52 ms
14,720 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
import math

A=[1]
for i in range(10**5):
	A.append(A[-1]+math.log10(i+1))

q=int(input())
for _ in range(q):
	n,m,k=map(int,input().split())
	f=A[n]
	s=(k-1)*math.log10(m)+math.log10(n-k+1)+A[k]+A[n-k]
	if f<s:
		print("Flush")
	else:
		print("Straight")
0