結果

問題 No.1220 yukipoker
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 01:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 86,000 KB
最終ジャッジ日時 2024-09-21 13:39:41
合計ジャッジ時間 5,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
70,392 KB
testcase_01 AC 49 ms
70,628 KB
testcase_02 AC 49 ms
71,840 KB
testcase_03 AC 50 ms
70,092 KB
testcase_04 AC 49 ms
70,864 KB
testcase_05 AC 54 ms
70,044 KB
testcase_06 AC 52 ms
70,304 KB
testcase_07 AC 51 ms
69,580 KB
testcase_08 AC 48 ms
70,104 KB
testcase_09 AC 49 ms
70,196 KB
testcase_10 AC 49 ms
70,904 KB
testcase_11 AC 100 ms
85,748 KB
testcase_12 AC 104 ms
85,780 KB
testcase_13 AC 130 ms
86,000 KB
testcase_14 AC 131 ms
85,672 KB
testcase_15 AC 113 ms
85,860 KB
testcase_16 AC 116 ms
85,880 KB
testcase_17 AC 104 ms
85,604 KB
testcase_18 AC 111 ms
85,308 KB
testcase_19 AC 139 ms
85,856 KB
testcase_20 AC 136 ms
85,996 KB
testcase_21 AC 53 ms
70,464 KB
testcase_22 AC 52 ms
71,596 KB
testcase_23 AC 49 ms
71,976 KB
testcase_24 AC 49 ms
70,480 KB
testcase_25 AC 48 ms
71,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
import math
U = 10 ** 5 + 10

log = [0] + [math.log10(i) for i in range(1, U + 1)]
log_acc = list(accumulate(log))


def test():
    N, M, K = map(int, input().split())
    f = log[M] + (log_acc[N]-log_acc[N-K]) - log_acc[K]
    s = K * log[M] + log[N - K + 1]
    if f > s:
        return "Straight"
    else:
        return "Flush"


Q = int(input())
ans = [test() for _ in range(Q)]
print("\n".join(ans))
0