結果

問題 No.2386 Udon Coupon (Easy)
ユーザー kotatsugamekotatsugame
提出日時 2023-07-21 21:25:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 22:39:30
合計ジャッジ時間 1,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
using namespace std;
int N,A,B,C;
int dp[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>A>>B>>C;
	for(int i=0;i<=N;i++)
	{
		dp[i+3]=max(dp[i+3],dp[i]+A);
		dp[i+5]=max(dp[i+5],dp[i]+B);
		dp[i+10]=max(dp[i+10],dp[i]+C);
	}
	cout<<dp[N]<<endl;
}
0