結果

問題 No.2386 Udon Coupon (Easy)
ユーザー iomiriomir
提出日時 2023-07-21 21:45:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,153 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 206,956 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-09-21 23:11:55
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 185 ms
20,096 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 35 ms
7,424 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 132 ms
16,000 KB
testcase_13 AC 169 ms
19,328 KB
testcase_14 AC 149 ms
17,152 KB
testcase_15 AC 176 ms
19,200 KB
testcase_16 AC 125 ms
15,104 KB
testcase_17 AC 161 ms
18,176 KB
testcase_18 AC 57 ms
9,472 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 112 ms
14,336 KB
testcase_21 AC 159 ms
17,920 KB
testcase_22 AC 82 ms
11,904 KB
testcase_23 AC 72 ms
11,136 KB
testcase_24 AC 20 ms
6,016 KB
testcase_25 AC 102 ms
13,568 KB
testcase_26 AC 148 ms
17,408 KB
testcase_27 AC 177 ms
19,712 KB
testcase_28 AC 74 ms
11,264 KB
testcase_29 AC 37 ms
7,936 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 68 ms
10,752 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 189 ms
19,968 KB
testcase_34 AC 85 ms
12,032 KB
testcase_35 AC 122 ms
15,488 KB
testcase_36 AC 172 ms
19,456 KB
testcase_37 AC 131 ms
15,744 KB
testcase_38 AC 92 ms
12,672 KB
testcase_39 AC 61 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
using P = pair<ll,ll>;
using vp=vector<pair<ll, ll>>;

const ll INF=1ll<<60;
ll mod10=1e9+7;
ll mod99=998244353;
const double PI = acos(-1);

#define rep(i,n) for (ll i=0;i<n;++i)
#define per(i,n) for(ll i=n-1;i>=0;--i)
#define rep2(i,a,n) for (ll i=a;i<n;++i)
#define per2(i,a,n) for (ll i=a;i>=n;--i)

template <typename T>
bool chmax(T &a,const T& b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}

template <typename T>
bool chmin(T &a,const T& b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}

ll powmod(ll x,ll n){
    ll res=1;
    while(n>0){
        if(n&1) res*=x;
        x*=x;
        n>>=1;
    }
    return res;
}

ll N,a,b,c;
map<ll,ll> mp;

ll f(ll x){
    if(mp.count(x))return mp[x];
    ll ans=0;
    if(x>=3) chmax(ans,f(x-3)+a);
    if(x>=5) chmax(ans,f(x-5)+b);
    if(x>=10) chmax(ans,f(x-10)+c);
    return mp[x]=ans;
}

int main(){
    cin>>N;
    cin>>a>>b>>c;
    cout<<f(N)<<endl;
}
0