結果

問題 No.1825 Except One
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-25 00:05:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 118,984 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-06-06 09:21:24
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 232 ms
107,008 KB
testcase_04 AC 102 ms
49,792 KB
testcase_05 AC 39 ms
21,376 KB
testcase_06 AC 7 ms
6,784 KB
testcase_07 AC 215 ms
99,072 KB
testcase_08 AC 213 ms
99,072 KB
testcase_09 AC 7 ms
6,016 KB
testcase_10 AC 156 ms
73,856 KB
testcase_11 AC 58 ms
30,720 KB
testcase_12 AC 106 ms
52,480 KB
testcase_13 AC 69 ms
34,944 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 53 ms
28,544 KB
testcase_25 AC 68 ms
34,944 KB
testcase_26 AC 12 ms
9,344 KB
testcase_27 AC 183 ms
87,936 KB
testcase_28 AC 230 ms
107,008 KB
testcase_29 AC 11 ms
8,448 KB
testcase_30 AC 12 ms
9,344 KB
testcase_31 AC 34 ms
19,712 KB
testcase_32 AC 228 ms
102,912 KB
testcase_33 AC 10 ms
7,552 KB
testcase_34 AC 236 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;
using ll = long long;

int main(){

    ll N, ans=0;
    cin >> N;

    vector<ll> A(N);
    for (int i=0; i<N; i++) cin >> A[i];
    sort(A.begin(), A.end());
    vector<vector<vector<ll>>> dp(N+1, vector(N+1, vector<ll>(5001)));
    dp[0][0][0] = 1;
    for (int i=1; i<=N; i++){
        for (int j=0; j<=N; j++){
            for (int k=0; k<=5000; k++){
                dp[i][j][k] += dp[i-1][j][k];
                if (j-1>=0 && k-A[i-1]>=0) dp[i][j][k] += dp[i-1][j-1][k-A[i-1]];
            }
        }
    }

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

    cout << ans << endl;

}
0