結果
問題 | No.268 ラッピング(Easy) |
ユーザー | btk |
提出日時 | 2015-08-21 22:45:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 830 bytes |
コンパイル時間 | 687 ms |
コンパイル使用メモリ | 84,604 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 11:47:06 |
合計ジャッジ時間 | 1,260 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; int L[3]; int R[3]; int f[3][2] = { { 0, 1 }, { 1, 2 }, { 2, 0 } }; int p[6][3] = { { 0, 1, 2 }, { 0, 2, 1 }, { 1, 0, 2 }, { 1, 2, 0 }, { 2, 0, 1 }, { 2, 1, 0 } }; int main(void){ int res = 1 << 30; for (int i = 0; i < 3; i++){ cin >> L[i]; } for (int i = 0; i < 3; i++){ cin >> R[i]; } for (int i = 0; i < 6; i++){ int sum = 0; for (int j = 0; j < 3; j++){ sum += R[j]*2 * (L[f[p[i][j]][0]] + L[f[p[i][j]][1]]); } res = min(res, sum); } cout << res << endl; return(0); }