結果

問題 No.250 atetubouのzetubou
ユーザー pluto77pluto77
提出日時 2016-04-22 15:02:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 754 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 86,136 KB
最終ジャッジ日時 2024-10-04 15:05:35
合計ジャッジ時間 11,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
84,992 KB
testcase_01 AC 177 ms
83,968 KB
testcase_02 AC 709 ms
86,016 KB
testcase_03 AC 754 ms
85,276 KB
testcase_04 AC 689 ms
85,888 KB
testcase_05 AC 701 ms
85,536 KB
testcase_06 AC 571 ms
85,564 KB
testcase_07 AC 351 ms
84,796 KB
testcase_08 AC 649 ms
85,236 KB
testcase_09 AC 527 ms
84,780 KB
testcase_10 AC 697 ms
86,136 KB
testcase_11 AC 465 ms
85,012 KB
testcase_12 AC 636 ms
85,152 KB
testcase_13 AC 409 ms
84,896 KB
testcase_14 AC 87 ms
78,780 KB
testcase_15 AC 158 ms
84,016 KB
testcase_16 AC 159 ms
84,224 KB
testcase_17 AC 154 ms
83,992 KB
testcase_18 AC 158 ms
84,252 KB
testcase_19 AC 156 ms
84,224 KB
testcase_20 AC 83 ms
78,876 KB
testcase_21 AC 82 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
#yuki_250

fact=[1 for i in xrange(3000)]
for i in xrange(1,3000):
 fact[i]=i*fact[i-1]
 
q=int(raw_input())
res=[]
for i in xrange(q):
 d,x,t=map(int,raw_input().split())
 n=d+x-1
 if n/2>x:
  r=x
 else:
  r=n-x
 if fact[n]/fact[r]/fact[n-r]<=t:
  res.append("AC")
 else:
  res.append("ZETUBOU")
  
for i in xrange(q):
 print res[i]
0