結果

問題 No.268 ラッピング(Easy)
コンテスト
ユーザー femto
提出日時 2016-01-16 19:51:56
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 5,000 ms
+ 268µs
コード長 402 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 358 ms
コンパイル使用メモリ 79,808 KB
実行使用メモリ 9,692 KB
最終ジャッジ日時 2026-08-31 08:11:50
合計ジャッジ時間 1,421 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int L[3], C[3];
	for(int i = 0; i < 3; i++) {
		cin >> L[i];
	}
	for(int i = 0; i < 3; i++) {
		cin >> C[i];
	}
	sort(L, L + 3);
	sort(C, C + 3);
	cout << 2 * (L[0] + L[1]) * C[2] + 2 * (L[0] + L[2]) * C[1] + 2 * (L[1] + L[2]) * C[0] << endl;
}

0