結果

問題 No.250 atetubouのzetubou
ユーザー MamonboMamonbo
提出日時 2015-08-17 01:48:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,030 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 09:56:49
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
10,752 KB
testcase_01 AC 41 ms
10,752 KB
testcase_02 AC 119 ms
10,752 KB
testcase_03 AC 134 ms
10,624 KB
testcase_04 AC 118 ms
10,752 KB
testcase_05 AC 122 ms
10,752 KB
testcase_06 AC 100 ms
10,752 KB
testcase_07 AC 64 ms
10,752 KB
testcase_08 AC 114 ms
10,752 KB
testcase_09 AC 92 ms
10,752 KB
testcase_10 AC 121 ms
10,880 KB
testcase_11 AC 85 ms
10,752 KB
testcase_12 AC 113 ms
10,880 KB
testcase_13 AC 74 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 122 ms
10,752 KB
testcase_16 AC 118 ms
10,752 KB
testcase_17 AC 124 ms
10,624 KB
testcase_18 AC 119 ms
10,752 KB
testcase_19 AC 120 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding=UTF-8

#数学的に煮詰めないと間に合わなさそうだな
Q=int(input())
for idx in range(0,Q,1):
    mojir=input()
    hyo=mojir.split(' ')
    Depth=int(hyo[0])#1500重ループとかZETUBOUでしょ
    width=int(hyo[1])
    Timeslimit=int(hyo[2])
    #あれか、n個の箱の中に合計w個のミカン入れる話か
    #nHrつかうやつ (D-1+w)C(w)でいいか
    sisan=1
#    print(list(range(Depth-1+width,Depth-1,-1)))
    #オーダー的にはO(QW) \sim 10^7で間に合うはず
    #あとはnot多倍長で頑張るということか
    nagasa=min(width,Depth-1)
    ans=True
    if Timeslimit==0:#ループを通らない時用
        print('ZETUBOU')
        ans=False
    for idy in range(0,nagasa,1):
        sisan=sisan*(Depth-1+width-idy)//(idy+1)#割り算は小さい方から
        if sisan > Timeslimit:#単調増加のために打ち切りが使える
            print('ZETUBOU')
            ans=False
            break
    if ans:
#        print(sisan)
        print('AC')
0