結果

問題 No.250 atetubouのzetubou
ユーザー krotonkroton
提出日時 2015-08-14 09:20:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,469 ms / 5,000 ms
コード長 831 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 57,712 KB
実行使用メモリ 21,208 KB
最終ジャッジ日時 2024-07-18 09:19:00
合計ジャッジ時間 55,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,399 ms
21,024 KB
testcase_01 AC 3,469 ms
20,904 KB
testcase_02 AC 3,383 ms
21,064 KB
testcase_03 AC 3,345 ms
21,000 KB
testcase_04 AC 3,463 ms
20,980 KB
testcase_05 AC 3,359 ms
20,952 KB
testcase_06 AC 3,359 ms
21,084 KB
testcase_07 AC 3,353 ms
21,072 KB
testcase_08 AC 3,328 ms
21,008 KB
testcase_09 AC 3,364 ms
20,932 KB
testcase_10 AC 3,313 ms
21,208 KB
testcase_11 AC 3,370 ms
21,096 KB
testcase_12 AC 3,320 ms
21,100 KB
testcase_13 AC 3,361 ms
20,892 KB
testcase_14 AC 3,214 ms
20,932 KB
testcase_15 AC 41 ms
20,900 KB
testcase_16 AC 39 ms
21,100 KB
testcase_17 AC 39 ms
21,036 KB
testcase_18 AC 38 ms
21,004 KB
testcase_19 AC 39 ms
21,052 KB
testcase_20 AC 7 ms
20,960 KB
testcase_21 AC 12 ms
21,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

const long long MAX_T = 1000000000000000LL;
long long cache[1501][1501];

long long patterns(int x, int d) {
    if (d == 1) {
        return 1;
    }
    if (cache[x][d] >= 0) {
        return cache[x][d];
    }
    long long result = 0;
    for (int i = 0; i <= x; ++i) {
        result += patterns(x - i, d - 1);
        if (result > MAX_T) {
            result = MAX_T + 1;
            continue;
        }
    }
    cache[x][d] = result;
    return result;
}

int main() {
    fill(&cache[0][0], &cache[1500][1500] + 1, -1);
    int q;
    cin >> q;
    for (int i = 0; i < q; ++i) {
        int d, x;
        long long t;
        cin >> d >> x >> t;
        long long p = patterns(x, d);
        cout << (p <= t ? "AC" : "ZETUBOU") << endl;
    }
    return 0;
}
0