結果

問題 No.1220 yukipoker
ユーザー anagohirameanagohirame
提出日時 2020-03-26 15:57:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-11-22 04:44:51
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
14,592 KB
testcase_01 AC 59 ms
14,720 KB
testcase_02 AC 60 ms
14,848 KB
testcase_03 AC 60 ms
14,720 KB
testcase_04 AC 60 ms
14,720 KB
testcase_05 AC 60 ms
14,720 KB
testcase_06 AC 60 ms
14,720 KB
testcase_07 AC 60 ms
14,976 KB
testcase_08 AC 60 ms
14,976 KB
testcase_09 AC 60 ms
14,848 KB
testcase_10 AC 60 ms
14,592 KB
testcase_11 AC 194 ms
16,256 KB
testcase_12 AC 206 ms
16,128 KB
testcase_13 AC 354 ms
17,792 KB
testcase_14 AC 349 ms
17,792 KB
testcase_15 AC 248 ms
16,512 KB
testcase_16 AC 277 ms
17,024 KB
testcase_17 AC 189 ms
16,000 KB
testcase_18 AC 224 ms
16,384 KB
testcase_19 AC 365 ms
18,048 KB
testcase_20 AC 366 ms
17,920 KB
testcase_21 AC 59 ms
14,720 KB
testcase_22 AC 61 ms
14,720 KB
testcase_23 AC 60 ms
14,720 KB
testcase_24 AC 60 ms
14,976 KB
testcase_25 AC 60 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2
import sys
def input():
	return sys.stdin.readline()[:-1]

log_cum = [0]
for i in range(1, 100001):
	log_cum.append(log_cum[-1] + log2(i))

q = int(input())
ans = []
for _ in range(q):
	n, m, k = map(int, input().split())
	s = (k-1) * log2(m) + log_cum[k] + log_cum[n-k+1]
	f = log_cum[n]

	#l = int(input())
	#print(log(l), log(l+1))
	#print(s, f)
	if s > f:
		ans.append("Flush")
	else:
		ans.append("Straight")
	#else:
		#print("Equivalent")
print(*ans, sep="\n")
0