結果

問題 No.250 atetubouのzetubou
ユーザー TawaraTawara
提出日時 2015-08-01 13:28:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,084 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-18 00:23:58
合計ジャッジ時間 12,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
12,032 KB
testcase_01 AC 120 ms
11,904 KB
testcase_02 AC 965 ms
12,032 KB
testcase_03 AC 1,084 ms
12,032 KB
testcase_04 AC 984 ms
11,904 KB
testcase_05 AC 994 ms
12,032 KB
testcase_06 AC 759 ms
12,032 KB
testcase_07 AC 368 ms
11,904 KB
testcase_08 AC 905 ms
12,032 KB
testcase_09 AC 668 ms
12,032 KB
testcase_10 AC 956 ms
12,032 KB
testcase_11 AC 579 ms
12,032 KB
testcase_12 AC 878 ms
12,032 KB
testcase_13 AC 487 ms
12,032 KB
testcase_14 AC 21 ms
11,904 KB
testcase_15 AC 75 ms
12,032 KB
testcase_16 AC 76 ms
12,160 KB
testcase_17 AC 75 ms
12,032 KB
testcase_18 AC 76 ms
12,032 KB
testcase_19 AC 75 ms
12,032 KB
testcase_20 AC 16 ms
11,904 KB
testcase_21 AC 16 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 3000
Q = int(raw_input())
dp = [1 for i in xrange(N)]
for i in xrange(2,N):
	dp[i] = i*dp[i-1]
for i in xrange(Q):
	D,X,T = map(int,raw_input().split(" "))
	print "AC" if dp[X+D-1]/dp[X]/dp[D-1] <= T else "ZETUBOU"
0