結果

問題 No.1220 yukipoker
ユーザー roarisroaris
提出日時 2020-09-05 17:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 88,868 KB
最終ジャッジ日時 2024-11-29 00:13:43
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
76,448 KB
testcase_01 AC 58 ms
75,728 KB
testcase_02 AC 57 ms
76,284 KB
testcase_03 AC 57 ms
76,308 KB
testcase_04 AC 56 ms
76,552 KB
testcase_05 AC 57 ms
76,076 KB
testcase_06 AC 56 ms
75,560 KB
testcase_07 AC 58 ms
76,028 KB
testcase_08 AC 57 ms
75,968 KB
testcase_09 AC 57 ms
75,724 KB
testcase_10 AC 56 ms
75,472 KB
testcase_11 AC 104 ms
88,868 KB
testcase_12 AC 104 ms
88,864 KB
testcase_13 AC 128 ms
88,508 KB
testcase_14 AC 124 ms
88,456 KB
testcase_15 AC 109 ms
88,708 KB
testcase_16 AC 113 ms
88,656 KB
testcase_17 AC 101 ms
88,812 KB
testcase_18 AC 106 ms
88,768 KB
testcase_19 AC 127 ms
88,836 KB
testcase_20 AC 127 ms
88,564 KB
testcase_21 AC 59 ms
75,868 KB
testcase_22 AC 59 ms
76,168 KB
testcase_23 AC 58 ms
76,052 KB
testcase_24 AC 59 ms
76,532 KB
testcase_25 AC 58 ms
75,800 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