結果
問題 |
No.268 ラッピング(Easy)
|
ユーザー |
![]() |
提出日時 | 2016-07-20 11:15:07 |
言語 | C++11(廃止可能性あり) (gcc 13.3.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
コンパイルメッセージ
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); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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"; }