結果

問題 No.1220 yukipoker
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-05 11:54:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-05-05 23:49:09
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,288 KB
testcase_01 AC 44 ms
60,160 KB
testcase_02 AC 43 ms
60,160 KB
testcase_03 AC 45 ms
60,160 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 46 ms
60,032 KB
testcase_06 AC 42 ms
59,904 KB
testcase_07 AC 43 ms
60,416 KB
testcase_08 AC 43 ms
59,904 KB
testcase_09 AC 46 ms
60,288 KB
testcase_10 AC 46 ms
60,288 KB
testcase_11 AC 187 ms
77,952 KB
testcase_12 AC 184 ms
78,208 KB
testcase_13 AC 296 ms
77,952 KB
testcase_14 AC 290 ms
77,696 KB
testcase_15 AC 224 ms
77,824 KB
testcase_16 AC 245 ms
78,080 KB
testcase_17 AC 176 ms
77,696 KB
testcase_18 AC 203 ms
77,824 KB
testcase_19 AC 299 ms
77,696 KB
testcase_20 AC 293 ms
78,080 KB
testcase_21 AC 46 ms
60,672 KB
testcase_22 AC 45 ms
60,672 KB
testcase_23 AC 45 ms
60,928 KB
testcase_24 AC 47 ms
60,544 KB
testcase_25 AC 48 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())

N = 10**5+50
import math

L = [0]*(N+1)
for i in range(1, N+1):
    L[i] = L[i-1]+math.log(i)

for i in range(q):
    n, m, k = map(int, input().split())
    F = L[n]-L[n-k]-L[k]+math.log(m)
    S = math.log(n-k+1)+k*math.log(m)
    if F < S:
        print('Flush')
    else:
        print('Straight')
0