結果

問題 No.250 atetubouのzetubou
ユーザー tabataba
提出日時 2016-04-15 06:24:12
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,595 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 85,156 KB
最終ジャッジ日時 2024-10-04 09:23:27
合計ジャッジ時間 21,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,023 ms
83,256 KB
testcase_01 AC 298 ms
79,652 KB
testcase_02 AC 1,400 ms
83,280 KB
testcase_03 AC 1,595 ms
84,508 KB
testcase_04 AC 1,339 ms
83,492 KB
testcase_05 AC 1,520 ms
84,080 KB
testcase_06 AC 1,147 ms
82,352 KB
testcase_07 AC 706 ms
82,576 KB
testcase_08 AC 1,323 ms
83,340 KB
testcase_09 AC 1,089 ms
83,512 KB
testcase_10 AC 1,412 ms
84,660 KB
testcase_11 AC 995 ms
85,156 KB
testcase_12 AC 1,269 ms
82,752 KB
testcase_13 AC 770 ms
81,428 KB
testcase_14 AC 91 ms
77,988 KB
testcase_15 AC 706 ms
84,528 KB
testcase_16 AC 643 ms
83,220 KB
testcase_17 AC 689 ms
83,356 KB
testcase_18 AC 640 ms
83,348 KB
testcase_19 AC 642 ms
82,988 KB
testcase_20 AC 71 ms
75,404 KB
testcase_21 AC 74 ms
76,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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"
0