結果

問題 No.1220 yukipoker
ユーザー rlangevinrlangevin
提出日時 2023-02-23 23:14:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 115,564 KB
最終ジャッジ日時 2024-07-23 16:24:33
合計ジャッジ時間 22,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,052 ms
109,804 KB
testcase_01 AC 1,058 ms
102,976 KB
testcase_02 AC 1,052 ms
102,980 KB
testcase_03 AC 1,053 ms
102,856 KB
testcase_04 AC 1,055 ms
103,108 KB
testcase_05 AC 1,050 ms
103,108 KB
testcase_06 AC 1,050 ms
103,484 KB
testcase_07 AC 1,052 ms
102,720 KB
testcase_08 AC 1,056 ms
103,108 KB
testcase_09 AC 1,060 ms
102,976 KB
testcase_10 AC 1,049 ms
103,228 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from math import log
from decimal import *

Q = int(readline())
mx = 101010
logfact = [1] * (mx + 1)
for i in range(mx):
    logfact[i + 1] = logfact[i] + Decimal(log(i + 1))

for _ in range(Q):
    N, M, K = map(int, readline().split())
    if N == K:
        F = Decimal(log(M))
    else:
        F = Decimal(log(M)) + Decimal(logfact[N]) - Decimal(logfact[K]) - Decimal(logfact[N - K])
    S = K * Decimal(log(M)) + Decimal(log(N - K + 1))
    print("Flush") if F < S else print("Straight")
0