結果
問題 |
No.250 atetubouのzetubou
|
ユーザー |
|
提出日時 | 2023-05-02 00:05:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 394 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 77,440 KB |
最終ジャッジ日時 | 2024-11-20 19:37:21 |
合計ジャッジ時間 | 3,653 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 1 WA * 19 |
ソースコード
for _ in range(int(input())): d, x, t = map(int, input().split()) res = 1 for i in range(min(d - 1, x)): res *= d + x - 1 - i if res > t: break if res <= t: print("AC") else: print("ZETUBOU")