結果

問題 No.1220 yukipoker
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-05 08:17:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-05-05 16:14:47
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,888 KB
testcase_01 AC 56 ms
69,888 KB
testcase_02 AC 55 ms
70,144 KB
testcase_03 AC 54 ms
70,016 KB
testcase_04 AC 56 ms
70,144 KB
testcase_05 AC 56 ms
70,272 KB
testcase_06 AC 54 ms
69,632 KB
testcase_07 AC 54 ms
69,632 KB
testcase_08 AC 55 ms
69,888 KB
testcase_09 AC 55 ms
69,888 KB
testcase_10 AC 54 ms
69,376 KB
testcase_11 AC 195 ms
85,408 KB
testcase_12 AC 200 ms
85,632 KB
testcase_13 AC 327 ms
85,248 KB
testcase_14 AC 323 ms
85,600 KB
testcase_15 AC 227 ms
85,816 KB
testcase_16 AC 248 ms
85,760 KB
testcase_17 AC 180 ms
85,520 KB
testcase_18 AC 220 ms
85,716 KB
testcase_19 AC 304 ms
85,888 KB
testcase_20 AC 311 ms
85,376 KB
testcase_21 AC 59 ms
70,656 KB
testcase_22 AC 58 ms
70,768 KB
testcase_23 AC 57 ms
70,656 KB
testcase_24 AC 58 ms
70,144 KB
testcase_25 AC 58 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2
from itertools import accumulate
x=[0]+[log2(i) for i in range(1,10**5+1)]
a=list(accumulate(x))

for _ in range(int(input())):
    n,m,k=map(int,input().split())
    ans=["Flush","Straight"]
    print(ans[a[n]-a[n-k]-a[k]>(a[n-k+1]-a[n-k])+(k-1)*(a[m]-a[m-1])])
0