結果
| 問題 |
No.268 ラッピング(Easy)
|
| コンテスト | |
| ユーザー |
RIGIH
|
| 提出日時 | 2017-07-20 16:06:16 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 633 bytes |
| コンパイル時間 | 689 ms |
| コンパイル使用メモリ | 64,112 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-08 17:45:19 |
| 合計ジャッジ時間 | 1,775 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <iostream>
#include <stdio.h>
#include <cstring>
#include <math.h>
#include <algorithm>
#include <vector>
#define rep(i,n) for(int i=0;i<n;i++)
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define ll long long
#define LL long long
#define mass 1000000007
using namespace std;
int main(){
int l[3];
int r,b,y;
cin>>l[0]>>l[1]>>l[2];
cin>>r>>b>>y;
int la=l[0]+l[1]+l[2];
int ans=0;
rep(i,3){
rep(j,3){
if(i!=j){
if(ans!=0){
ans=min(ans,r*(la-l[i])*2+b*(la-l[j])*2+y*(l[i]+l[j])*2);
}else{
ans=r*(la-l[i])*2+b*(la-l[j])*2+y*(l[i]+l[j])*2;
}
}
}
}
cout<<ans<<endl;
return 0;
}
RIGIH