結果
問題 |
No.268 ラッピング(Easy)
|
ユーザー |
|
提出日時 | 2015-12-16 17:10:18 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 325 bytes |
コンパイル時間 | 1,284 ms |
コンパイル使用メモリ | 159,476 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 05:42:59 |
合計ジャッジ時間 | 1,845 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int(i)=0;(i)<(n);++(i)) int main(){ int L[6], res = INT_MAX; REP(i,6) cin >> L[i]; REP(i,6){ res = min(res, L[3]*(L[1]+L[2])*2 + L[4]*(L[0]+L[2])*2 + L[5]*(L[0]+L[1])*2); next_permutation(L,L+3); } cout << res << endl; }