結果

問題 No.1825 Except One
ユーザー boatmusclesboatmuscles
提出日時 2022-01-28 22:37:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 45,440 KB
実行使用メモリ 103,236 KB
最終ジャッジ日時 2024-06-09 15:58:09
合計ジャッジ時間 7,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,412 KB
testcase_01 AC 3 ms
9,284 KB
testcase_02 AC 4 ms
13,504 KB
testcase_03 AC 642 ms
103,112 KB
testcase_04 AC 198 ms
68,676 KB
testcase_05 AC 49 ms
42,052 KB
testcase_06 AC 8 ms
17,344 KB
testcase_07 AC 597 ms
99,524 KB
testcase_08 AC 585 ms
99,396 KB
testcase_09 AC 6 ms
15,556 KB
testcase_10 AC 352 ms
85,064 KB
testcase_11 AC 80 ms
54,464 KB
testcase_12 AC 218 ms
70,724 KB
testcase_13 AC 117 ms
56,384 KB
testcase_14 AC 3 ms
7,236 KB
testcase_15 AC 6 ms
15,428 KB
testcase_16 AC 5 ms
13,636 KB
testcase_17 AC 3 ms
9,288 KB
testcase_18 AC 3 ms
7,108 KB
testcase_19 AC 4 ms
13,384 KB
testcase_20 AC 4 ms
13,376 KB
testcase_21 AC 2 ms
9,280 KB
testcase_22 AC 3 ms
9,424 KB
testcase_23 AC 4 ms
11,336 KB
testcase_24 AC 86 ms
52,420 KB
testcase_25 AC 95 ms
58,436 KB
testcase_26 AC 12 ms
25,668 KB
testcase_27 AC 453 ms
93,384 KB
testcase_28 WA -
testcase_29 AC 12 ms
23,616 KB
testcase_30 AC 13 ms
23,656 KB
testcase_31 AC 44 ms
42,176 KB
testcase_32 AC 629 ms
101,444 KB
testcase_33 AC 11 ms
19,652 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<algorithm>
int dp[51][5001][101];

int main(){
    int N;
    scanf("%d", &N);
    int A[N];
    for(int i = 0; i < N; ++i) scanf("%d", A + i);
    dp[0][0][0] = 1;
    for (int i = 0; i < N; i++)
    {
        for (int j = i; j >= 0; j--)
        {
            for (int k = 0; k <= i*100; k++)
            {
                for (int l = 0; l <= 100; l++)
                {
                    dp[j+1][k + A[i]][std::max(l, A[i])] += dp[j][k][l];
                }
            }
        }
    }
    int answer = 0;
    for (int i = 2; i <= N; i++)
    {
        for (int j = 0; j*(i-1) <= 5000; j++)
        {
            for (int k = 0; k <= j && k <= 100; k++)
            {
                answer += dp[i][j*(i-1)][k];
            }
        }
    }
    printf("%d\n", answer);
}
0