結果

問題 No.2329 Nafmo、イカサマをする
ユーザー 👑 potato167potato167
提出日時 2023-05-28 17:28:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 204,656 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-27 12:59:16
合計ジャッジ時間 104,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 1 ms
8,448 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 WA -
testcase_04 AC 2 ms
8,320 KB
testcase_05 AC 2 ms
10,496 KB
testcase_06 AC 2 ms
8,320 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 870 ms
10,496 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
    ll N,M,K,ans=0;
    cin>>N>>M>>K;
    vector<ll> A(N);
    for(auto &a:A) cin>>a;
    auto f=[&](auto self,ll v,int c,int ind)->void{
        if(M<v) return;
        if(ind==N||c==K){
            ans=max(ans,v);
            return;
        }
        for(ll i=0;i<=M-c;i++){
            self(self,v+i*A[ind],c+i,ind+1);
        }
    };
    f(f,0,0,0);
    cout<<ans<<"\n";
}
0