結果
問題 | No.250 atetubouのzetubou |
ユーザー |
![]() |
提出日時 | 2024-11-27 21:53:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 662 ms |
コンパイル使用メモリ | 81,408 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-11-27 21:53:37 |
合計ジャッジ時間 | 3,905 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 WA * 5 |
ソースコード
for j in range(int(input())): d, x, t = map(int, input().split()) x2 = min(x, d - 1) tmp = 1 for i in range(x2): tmp *= (x + d - 1 - i) if i < x2: tmp //= (i + 1) if tmp > t: print("ZETUBOU") break else: print("AC")