結果

問題 No.2386 Udon Coupon (Easy)
ユーザー yuusaanyuusaan
提出日時 2024-10-07 11:41:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 3,015 ms
コンパイル使用メモリ 244,252 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 11:41:23
合計ジャッジ時間 16,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 941 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 56 ms
6,816 KB
testcase_11 AC 13 ms
6,820 KB
testcase_12 AC 515 ms
6,816 KB
testcase_13 AC 871 ms
6,820 KB
testcase_14 AC 654 ms
6,820 KB
testcase_15 AC 827 ms
6,816 KB
testcase_16 AC 483 ms
6,820 KB
testcase_17 AC 702 ms
6,820 KB
testcase_18 AC 131 ms
6,816 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 416 ms
6,816 KB
testcase_21 AC 691 ms
6,816 KB
testcase_22 AC 262 ms
6,816 KB
testcase_23 AC 195 ms
6,816 KB
testcase_24 AC 24 ms
6,820 KB
testcase_25 AC 341 ms
6,816 KB
testcase_26 AC 667 ms
6,820 KB
testcase_27 AC 856 ms
6,816 KB
testcase_28 AC 204 ms
6,820 KB
testcase_29 AC 73 ms
6,820 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 181 ms
6,820 KB
testcase_32 AC 8 ms
6,816 KB
testcase_33 AC 900 ms
6,816 KB
testcase_34 AC 253 ms
6,820 KB
testcase_35 AC 474 ms
6,816 KB
testcase_36 AC 863 ms
6,816 KB
testcase_37 AC 503 ms
6,816 KB
testcase_38 AC 292 ms
6,816 KB
testcase_39 AC 153 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main(){
    int n,a,b,c;
    cin >> n >> a >> b >> c;
    int ans = 0;
    for(int j = 0;j * 10 <= n;j++){
        for(int i = 0;j * 10 + i * 5 <= n;i++){
            ans = max(ans,j * c + i * b + (n - j * 10 - i * 5) / 3 * a);
        }
    }
    cout << ans << endl;
    return 0;
}
0