結果
問題 |
No.1220 yukipoker
|
ユーザー |
![]() |
提出日時 | 2025-07-07 13:50:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 543 ms |
コンパイル使用メモリ | 82,100 KB |
実行使用メモリ | 62,692 KB |
最終ジャッジ日時 | 2025-07-07 13:51:06 |
合計ジャッジ時間 | 5,937 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 10 TLE * 1 -- * 14 |
ソースコード
for _ in range(int(input())): N,M,K = map(int,input().split()) tmp = 1 for i in range(K-1): tmp *= (N-i) / M / (i+1) if tmp > 10 ** 10: break if tmp > 1: print("Straight") else: print("Flush")