結果

問題 No.1220 yukipoker
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-19 14:22:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 93,448 KB
最終ジャッジ日時 2024-11-18 08:50:30
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,000 KB
testcase_01 AC 42 ms
66,564 KB
testcase_02 AC 43 ms
66,628 KB
testcase_03 AC 42 ms
66,868 KB
testcase_04 AC 43 ms
66,412 KB
testcase_05 AC 43 ms
67,732 KB
testcase_06 AC 42 ms
66,244 KB
testcase_07 AC 46 ms
66,752 KB
testcase_08 AC 42 ms
66,308 KB
testcase_09 AC 41 ms
65,948 KB
testcase_10 AC 42 ms
66,456 KB
testcase_11 AC 119 ms
87,316 KB
testcase_12 AC 125 ms
88,096 KB
testcase_13 AC 163 ms
92,948 KB
testcase_14 AC 156 ms
92,884 KB
testcase_15 AC 133 ms
89,192 KB
testcase_16 AC 136 ms
90,236 KB
testcase_17 AC 113 ms
87,016 KB
testcase_18 AC 124 ms
88,424 KB
testcase_19 AC 181 ms
93,360 KB
testcase_20 AC 162 ms
93,448 KB
testcase_21 AC 47 ms
67,704 KB
testcase_22 AC 44 ms
67,860 KB
testcase_23 AC 44 ms
66,792 KB
testcase_24 AC 45 ms
67,564 KB
testcase_25 AC 45 ms
67,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log
q=int(input())
nmk=[list(map(int,input().split())) for _ in range(q)]
lary=[0]
for i in range(1,10**5+3):
  lary.append(lary[-1]+log(i))
# lary[k]:log(1)+log(2)+...+log(k)
for n,m,k in nmk:
  # Flush
  # m*cmb(n,k)通り
  # Straight
  # (n+1-k)*m^k通り
  # max(S/F,F/S)>=2という条件
  # log((n+1-k)*m^k)=log(n+1-k)+k*log(m)
  s=log(n+1-k)+k*log(m)
  # log(m*cmb(n,k))=log(m)+log(cmb(n,k))
  # log(cmb(n,k))=log(n!)-log(k!)-log((n-k)!)
  f=log(m)+lary[n]-lary[k]-lary[n-k]
  if f>s:
    print('Straight')
  else:
    print('Flush')
0