結果

問題 No.1220 yukipoker
ユーザー 👑 rin204rin204
提出日時 2022-11-03 00:42:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 91,124 KB
最終ジャッジ日時 2024-07-17 12:18:05
合計ジャッジ時間 5,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
73,472 KB
testcase_01 AC 59 ms
73,472 KB
testcase_02 AC 55 ms
73,728 KB
testcase_03 AC 55 ms
73,728 KB
testcase_04 AC 56 ms
73,728 KB
testcase_05 AC 56 ms
73,472 KB
testcase_06 AC 57 ms
73,728 KB
testcase_07 AC 57 ms
73,984 KB
testcase_08 AC 57 ms
73,600 KB
testcase_09 AC 58 ms
73,344 KB
testcase_10 AC 57 ms
73,856 KB
testcase_11 AC 206 ms
90,604 KB
testcase_12 AC 213 ms
90,916 KB
testcase_13 AC 333 ms
90,624 KB
testcase_14 AC 321 ms
91,008 KB
testcase_15 AC 245 ms
90,752 KB
testcase_16 AC 267 ms
91,124 KB
testcase_17 AC 198 ms
90,624 KB
testcase_18 AC 228 ms
90,784 KB
testcase_19 AC 343 ms
90,760 KB
testcase_20 AC 340 ms
90,984 KB
testcase_21 AC 58 ms
74,112 KB
testcase_22 AC 59 ms
74,240 KB
testcase_23 AC 58 ms
74,112 KB
testcase_24 AC 57 ms
73,984 KB
testcase_25 AC 58 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log

N = 200000
fact = [0]
for i in range(1, N):
    fact.append(fact[-1] + log(i))

def flush(n, m, k):
    return fact[n] - fact[k] - fact[n - k] + log(m)

def straight(n, m, k):
    return k * log(m) + log(n - k + 1)

for _ in range(int(input())):
    n, m, k = map(int, input().split())
    if flush(n, m, k) < straight(n, m, k):
        print("Flush")
    else:
        print("Straight")
0