結果

問題 No.2386 Udon Coupon (Easy)
ユーザー daiotadaiota
提出日時 2023-07-22 00:42:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 1,508 ms
コンパイル使用メモリ 166,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-22 01:56:39
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 99 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 57 ms
5,376 KB
testcase_13 AC 91 ms
5,376 KB
testcase_14 AC 67 ms
5,376 KB
testcase_15 AC 90 ms
5,376 KB
testcase_16 AC 50 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 16 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 44 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
5,376 KB
testcase_26 AC 70 ms
5,376 KB
testcase_27 AC 94 ms
5,376 KB
testcase_28 AC 24 ms
5,376 KB
testcase_29 AC 9 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 AC 2 ms
5,376 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 53 ms
5,376 KB
testcase_36 AC 92 ms
5,376 KB
testcase_37 AC 56 ms
5,376 KB
testcase_38 AC 33 ms
5,376 KB
testcase_39 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j,k;

	ll N,A,B,C;
	cin >> N >> A >> B >> C;

	ll t=N/10,D=0;
	for(i=0;i<=t;i++){
		ll z=N-10*i;
		for(j=(3*z+4)/5;j<=2*z/3;j++){
			D=max(D,(5*j-3*z)*A+(-3*j+2*z)*B+C*i);
		}

	}

	cout << D << endl;



	return 0;
}
0