結果
問題 | No.1220 yukipoker |
ユーザー | fuppy_kyopro |
提出日時 | 2020-09-04 21:43:11 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 417 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 848,184 KB |
最終ジャッジ日時 | 2024-11-26 12:22:55 |
合計ジャッジ時間 | 49,226 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
ソースコード
def main(): q = int(input()) fact = [0 for _ in range(111111)] fact[0] = 1 for i in range(1, 110000): fact[i] = fact[i - 1] * i for _ in range(q): n, m, k = map(int, input().split()) f = m * fact[n] / fact[k] s = (n - k + 1) * pow(m, k) if f < s: print('Flush') else: print('Straight') if __name__ == '__main__': main()