結果

問題 No.1220 yukipoker
ユーザー nagissnagiss
提出日時 2020-09-04 22:02:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,204 KB
最終ジャッジ日時 2024-05-04 22:19:59
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
14,848 KB
testcase_01 AC 51 ms
14,848 KB
testcase_02 AC 48 ms
14,848 KB
testcase_03 AC 47 ms
14,848 KB
testcase_04 AC 47 ms
14,848 KB
testcase_05 AC 49 ms
14,976 KB
testcase_06 AC 47 ms
14,848 KB
testcase_07 AC 46 ms
14,720 KB
testcase_08 AC 47 ms
14,848 KB
testcase_09 AC 46 ms
14,720 KB
testcase_10 AC 46 ms
14,848 KB
testcase_11 AC 129 ms
23,116 KB
testcase_12 AC 133 ms
23,812 KB
testcase_13 AC 222 ms
33,520 KB
testcase_14 AC 215 ms
33,220 KB
testcase_15 AC 156 ms
25,216 KB
testcase_16 AC 173 ms
27,352 KB
testcase_17 AC 118 ms
22,416 KB
testcase_18 AC 142 ms
24,652 KB
testcase_19 AC 223 ms
34,200 KB
testcase_20 AC 229 ms
34,204 KB
testcase_21 AC 46 ms
14,720 KB
testcase_22 AC 46 ms
14,848 KB
testcase_23 AC 46 ms
14,848 KB
testcase_24 AC 47 ms
14,848 KB
testcase_25 AC 46 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import log
class Combination:
    def __init__(self, n_max):
        # O(n_max + log(mod))
        f = 0
        self.fac = fac = [f]
        for i in range(1, n_max+1):
            f += log(i)
            fac.append(f)

    def __call__(self, n, r):
        if not 0 <= r <= n: return 0
        return self.fac[n] - self.fac[r] - self.fac[n-r]

def main():
    comb = Combination(101010)
    Q = int(sys.stdin.buffer.readline())
    m = map(int, sys.stdin.buffer.read().split())
    Ans = []
    for N, M, K in zip(m, m, m):
        if comb(N, K) < log(M) * (K-1) + log(N-K+1):
            Ans.append("Flush")
        else:
            Ans.append("Straight")
    print("\n".join(Ans))

main()
0