結果

問題 No.268 ラッピング(Easy)
ユーザー horiesinitihoriesiniti
提出日時 2016-07-20 11:15:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 66,756 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-15 17:30:31
合計ジャッジ時間 1,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d %d %d %d %d %d",&l1,&l2,&l3,&r,&b,&y);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <vector>
#include <algorithm>

int main() {
	std::vector<int> vec1,vec2;
	int l1,l2,l3,r,b,y;
	scanf("%d %d %d %d %d %d",&l1,&l2,&l3,&r,&b,&y);
	vec1.push_back(l1+l2);
	vec1.push_back(l1+l3);
	vec1.push_back(l2+l3);
	vec2.push_back(r);
	vec2.push_back(b);
	vec2.push_back(y);
	std::sort(vec1.begin(),vec1.end());
	std::sort(vec2.begin(),vec2.end());
	std::cout<<2*(vec1[2]*vec2[0]+vec1[1]*vec2[1]+vec1[0]*vec2[2])<<"\n";

}
0