結果

問題 No.250 atetubouのzetubou
ユーザー TawaraTawara
提出日時 2015-08-01 13:13:12
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,756 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 76,472 KB
実行使用メモリ 84,972 KB
最終ジャッジ日時 2024-07-18 00:23:24
合計ジャッジ時間 25,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,201 ms
83,204 KB
testcase_01 AC 354 ms
80,636 KB
testcase_02 AC 1,554 ms
82,256 KB
testcase_03 AC 1,756 ms
82,624 KB
testcase_04 AC 1,542 ms
81,488 KB
testcase_05 AC 1,581 ms
83,200 KB
testcase_06 AC 1,306 ms
83,860 KB
testcase_07 AC 795 ms
81,324 KB
testcase_08 AC 1,465 ms
82,976 KB
testcase_09 AC 1,232 ms
84,972 KB
testcase_10 AC 1,591 ms
83,492 KB
testcase_11 AC 1,081 ms
82,320 KB
testcase_12 AC 1,445 ms
81,564 KB
testcase_13 AC 871 ms
81,080 KB
testcase_14 AC 105 ms
78,336 KB
testcase_15 AC 766 ms
83,712 KB
testcase_16 AC 755 ms
82,548 KB
testcase_17 AC 775 ms
84,084 KB
testcase_18 AC 738 ms
81,280 KB
testcase_19 AC 751 ms
82,944 KB
testcase_20 AC 76 ms
75,776 KB
testcase_21 AC 76 ms
76,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial as fact
Q = int(raw_input())
for i in range(Q):
	D,X,T = map(int,raw_input().split(" "))
	print "AC" if fact(X+D-1)/(fact(X)*fact(D-1)) <= T else "ZETUBOU"
0