結果

問題 No.250 atetubouのzetubou
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-07 23:04:28
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 228 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 79,768 KB
最終ジャッジ日時 2024-10-05 10:29:21
合計ジャッジ時間 14,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,099 ms
78,632 KB
testcase_01 AC 621 ms
78,732 KB
testcase_02 AC 4,754 ms
79,420 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 4,915 ms
78,716 KB
testcase_06 AC 3,809 ms
79,120 KB
testcase_07 AC 1,869 ms
79,148 KB
testcase_08 AC 4,453 ms
79,112 KB
testcase_09 AC 3,399 ms
79,252 KB
testcase_10 AC 4,910 ms
79,268 KB
testcase_11 AC 2,936 ms
79,244 KB
testcase_12 AC 4,333 ms
78,600 KB
testcase_13 AC 2,443 ms
79,376 KB
testcase_14 AC 99 ms
77,432 KB
testcase_15 AC 1,422 ms
79,288 KB
testcase_16 AC 1,451 ms
79,768 KB
testcase_17 AC 1,404 ms
79,288 KB
testcase_18 AC 1,472 ms
79,404 KB
testcase_19 AC 1,411 ms
79,748 KB
testcase_20 AC 68 ms
75,524 KB
testcase_21 AC 69 ms
76,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(raw_input())
for i in range(Q):
    D,X,T=map(int,raw_input().split())
    t=1
    for d in range(D-1):
        t*=(X+D-1-d)
        t/=d+1
    #print t
    if t <= T:
        print "AC"
    else:
        print "ZETUBOU"

0