結果

問題 No.1220 yukipoker
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-25 13:56:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-07-21 20:51:01
合計ジャッジ時間 9,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
14,720 KB
testcase_01 AC 60 ms
14,592 KB
testcase_02 AC 63 ms
14,464 KB
testcase_03 AC 58 ms
14,720 KB
testcase_04 AC 58 ms
14,720 KB
testcase_05 AC 59 ms
14,592 KB
testcase_06 AC 57 ms
14,592 KB
testcase_07 AC 59 ms
14,592 KB
testcase_08 AC 57 ms
14,720 KB
testcase_09 AC 56 ms
14,720 KB
testcase_10 AC 58 ms
14,592 KB
testcase_11 AC 389 ms
14,464 KB
testcase_12 AC 405 ms
14,464 KB
testcase_13 AC 800 ms
14,592 KB
testcase_14 AC 771 ms
14,464 KB
testcase_15 AC 506 ms
14,720 KB
testcase_16 AC 581 ms
14,720 KB
testcase_17 AC 356 ms
14,592 KB
testcase_18 AC 440 ms
14,720 KB
testcase_19 AC 806 ms
14,848 KB
testcase_20 AC 800 ms
14,720 KB
testcase_21 AC 60 ms
14,464 KB
testcase_22 AC 61 ms
14,720 KB
testcase_23 AC 60 ms
14,720 KB
testcase_24 AC 60 ms
14,720 KB
testcase_25 AC 61 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2
l = [0]
for i in range(2, 100001):
    l.append(l[-1] + log2(i))
for _ in range(int(input())):
    n, m, k = map(int, input().split())
    if l[n - 1] < l[n - k] + l[k - 1] + (k - 1) * log2(m):
        print("Flush")
    else:
        print("Straight")
0