結果
| 問題 | No.250 atetubouのzetubou |
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2016-04-15 06:21:51 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 1,119 ms / 5,000 ms |
| + 521µs | |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 67 ms |
| コンパイル使用メモリ | 80,768 KB |
| 実行使用メモリ | 91,228 KB |
| 最終ジャッジ日時 | 2026-07-18 05:30:49 |
| 合計ジャッジ時間 | 16,518 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
import math n=input() q=[map(int,raw_input().split())for i in[0]*n] for i in q: x=math.factorial(i[1]+i[0]-1)/(math.factorial(i[0]-1)*math.factorial((i[1]+i[0]-1)-(i[0]-1))) if x<=i[2]: print"AC" else: print"ZETUBOU"
taba