結果

問題 No.1825 Except One
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-16 23:44:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 3,000 ms
コード長 1,025 bytes
コンパイル時間 1,087 ms
コンパイル使用メモリ 117,604 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-06-10 06:03:00
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 230 ms
107,136 KB
testcase_04 AC 97 ms
49,792 KB
testcase_05 AC 38 ms
21,376 KB
testcase_06 AC 8 ms
6,784 KB
testcase_07 AC 209 ms
99,200 KB
testcase_08 AC 208 ms
99,200 KB
testcase_09 AC 6 ms
6,016 KB
testcase_10 AC 153 ms
73,856 KB
testcase_11 AC 58 ms
30,720 KB
testcase_12 AC 113 ms
52,608 KB
testcase_13 AC 67 ms
34,944 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 6 ms
5,632 KB
testcase_16 AC 5 ms
5,504 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 57 ms
28,672 KB
testcase_25 AC 70 ms
35,072 KB
testcase_26 AC 14 ms
9,344 KB
testcase_27 AC 182 ms
87,808 KB
testcase_28 AC 223 ms
107,136 KB
testcase_29 AC 10 ms
8,448 KB
testcase_30 AC 12 ms
9,344 KB
testcase_31 AC 33 ms
19,840 KB
testcase_32 AC 217 ms
102,912 KB
testcase_33 AC 10 ms
7,680 KB
testcase_34 AC 229 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    long long N, ans=0;
    cin >> N;
    vector<long long> A(N);
    for (int i=0; i<N; i++) cin >> A[i];
    sort(A.begin(), A.end());

    vector<vector<vector<long long>>> dp(N+1, vector(N+1, vector<long long>(5001)));
    for (int i=0; i<=N; i++) dp[i][0][0] = 1;

    for (int i=1; i<=N; i++){
        for (int j=1; j<=N; j++){
            for (int k=0; k<=5000; k++){
                dp[i][j][k] += dp[i-1][j][k];
                if (k>=A[i-1]) dp[i][j][k] += dp[i-1][j-1][k-A[i-1]];
            }
        }
    }

    for (int i=0; i<N; i++){
        for (int j=1; j<N; j++){
            for (int k=0; k<=5000; k++){
                if ((k+A[i])%j == 0 && k+A[i]>=j*A[i]) ans += dp[i][j][k];
            }
        }
    }

    cout << ans << endl;

    return 0;
}
0