結果

問題 No.549 素材合成システム
ユーザー アロンアルファアロンアルファ
提出日時 2017-10-03 12:10:04
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 65,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 22:38:13
合計ジャッジ時間 7,878 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 215 ms
6,940 KB
testcase_08 AC 211 ms
6,940 KB
testcase_09 AC 216 ms
6,940 KB
testcase_10 AC 231 ms
6,940 KB
testcase_11 AC 214 ms
6,940 KB
testcase_12 AC 206 ms
6,944 KB
testcase_13 AC 215 ms
6,940 KB
testcase_14 AC 213 ms
6,944 KB
testcase_15 AC 214 ms
6,944 KB
testcase_16 AC 215 ms
6,940 KB
testcase_17 AC 199 ms
6,944 KB
testcase_18 AC 128 ms
6,944 KB
testcase_19 AC 178 ms
6,944 KB
testcase_20 AC 178 ms
6,944 KB
testcase_21 AC 171 ms
6,940 KB
testcase_22 AC 155 ms
6,944 KB
testcase_23 AC 208 ms
6,940 KB
testcase_24 AC 179 ms
6,940 KB
testcase_25 AC 140 ms
6,940 KB
testcase_26 AC 198 ms
6,940 KB
testcase_27 AC 149 ms
6,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 193 ms
6,940 KB
testcase_32 AC 194 ms
6,940 KB
testcase_33 AC 206 ms
6,940 KB
testcase_34 AC 206 ms
6,944 KB
testcase_35 AC 207 ms
6,940 KB
testcase_36 AC 197 ms
6,940 KB
testcase_37 AC 198 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 83 ms
6,940 KB
testcase_41 AC 19 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 26 ms
6,940 KB
testcase_44 AC 4 ms
6,940 KB
testcase_45 AC 38 ms
6,944 KB
testcase_46 AC 13 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

int main()
{
	int N;
	std::vector<int> v;
	int n,w=0;

	std::cin >> N;

	while(N--){
		std::cin >> n;
		v.push_back(n);
	}

	std::sort(v.begin(),v.end());
	//for(int i = 0;i <v.size();i++) std::cout << v[i] << ' ';
	//std::cout << std::endl;
	for(std::vector<int>::iterator i = v.begin();i != v.end()-1;){
		*(i+v.size()-1) += *(i + v.size()/2)/2;
		v.erase(i+v.size()/2);
		if(v.size() < 3) break;
		//for(int i = 0;i <v.size();i++) std::cout << v[i] << ' ';
		//std::cout << std::endl;
	}
	v[1] += v[0]/2;
	std::cout << v.back() << std::endl;

	return 0;
}
0