結果

問題 No.1220 yukipoker
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-05 08:17:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-11-27 15:01:52
合計ジャッジ時間 5,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
69,120 KB
testcase_01 AC 56 ms
69,120 KB
testcase_02 AC 55 ms
69,376 KB
testcase_03 AC 54 ms
69,632 KB
testcase_04 AC 58 ms
69,504 KB
testcase_05 AC 55 ms
69,248 KB
testcase_06 AC 54 ms
69,760 KB
testcase_07 AC 54 ms
69,888 KB
testcase_08 AC 53 ms
69,632 KB
testcase_09 AC 54 ms
69,836 KB
testcase_10 AC 54 ms
70,016 KB
testcase_11 AC 190 ms
84,992 KB
testcase_12 AC 194 ms
85,760 KB
testcase_13 AC 294 ms
85,760 KB
testcase_14 AC 287 ms
85,376 KB
testcase_15 AC 221 ms
85,376 KB
testcase_16 AC 243 ms
85,376 KB
testcase_17 AC 194 ms
85,728 KB
testcase_18 AC 221 ms
85,376 KB
testcase_19 AC 325 ms
85,456 KB
testcase_20 AC 322 ms
85,504 KB
testcase_21 AC 56 ms
70,656 KB
testcase_22 AC 56 ms
70,528 KB
testcase_23 AC 56 ms
70,272 KB
testcase_24 AC 57 ms
70,528 KB
testcase_25 AC 56 ms
70,528 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