結果

問題 No.1220 yukipoker
ユーザー roarisroaris
提出日時 2020-09-05 17:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 89,176 KB
最終ジャッジ日時 2024-05-06 16:20:02
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
76,380 KB
testcase_01 AC 52 ms
75,920 KB
testcase_02 AC 50 ms
76,236 KB
testcase_03 AC 51 ms
76,708 KB
testcase_04 AC 50 ms
75,800 KB
testcase_05 AC 51 ms
77,104 KB
testcase_06 AC 51 ms
75,924 KB
testcase_07 AC 51 ms
76,772 KB
testcase_08 AC 49 ms
76,924 KB
testcase_09 AC 49 ms
76,568 KB
testcase_10 AC 49 ms
76,684 KB
testcase_11 AC 93 ms
88,840 KB
testcase_12 AC 94 ms
88,844 KB
testcase_13 AC 127 ms
88,832 KB
testcase_14 AC 112 ms
88,720 KB
testcase_15 AC 100 ms
89,060 KB
testcase_16 AC 103 ms
89,168 KB
testcase_17 AC 89 ms
88,988 KB
testcase_18 AC 94 ms
88,780 KB
testcase_19 AC 115 ms
88,728 KB
testcase_20 AC 115 ms
89,176 KB
testcase_21 AC 52 ms
76,808 KB
testcase_22 AC 52 ms
77,008 KB
testcase_23 AC 51 ms
76,268 KB
testcase_24 AC 51 ms
76,208 KB
testcase_25 AC 53 ms
77,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import log

logs = [-1]

for i in range(1, 10**5+10):
    logs.append(log(i))

acc = [0]

for logs_i in logs:
    acc.append(acc[-1]+logs_i)
    
for _ in range(int(input())):
    N, M, K = map(int, input().split())
    F = log(M)+acc[N+1]-acc[N-K+1]-(acc[K+1]-acc[1])
    S = log(N-K+1)+K*log(M)
    
    if F<S:
        print('Flush')
    else:
        print('Straight')
0