結果

問題 No.1220 yukipoker
ユーザー ntuda
提出日時 2025-07-07 11:19:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 76,676 KB
最終ジャッジ日時 2025-07-07 11:19:39
合計ジャッジ時間 6,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb
for _ in range(int(input())):
    N,M,K = map(int,input().split())
    if N > K * M:
        print("Straight")
    else:
        print("Flush")
0