結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 231 ms
5,248 KB
testcase_08 AC 224 ms
5,248 KB
testcase_09 AC 222 ms
5,248 KB
testcase_10 AC 225 ms
5,248 KB
testcase_11 AC 223 ms
5,248 KB
testcase_12 AC 223 ms
5,248 KB
testcase_13 AC 224 ms
5,248 KB
testcase_14 AC 225 ms
5,248 KB
testcase_15 AC 228 ms
5,248 KB
testcase_16 AC 224 ms
5,248 KB
testcase_17 AC 212 ms
5,248 KB
testcase_18 AC 139 ms
5,248 KB
testcase_19 AC 197 ms
5,248 KB
testcase_20 AC 190 ms
5,248 KB
testcase_21 AC 186 ms
5,248 KB
testcase_22 AC 169 ms
5,248 KB
testcase_23 AC 232 ms
5,248 KB
testcase_24 AC 190 ms
5,248 KB
testcase_25 AC 152 ms
5,248 KB
testcase_26 AC 215 ms
5,248 KB
testcase_27 AC 162 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 210 ms
5,248 KB
testcase_32 AC 208 ms
5,248 KB
testcase_33 AC 211 ms
5,248 KB
testcase_34 AC 211 ms
5,248 KB
testcase_35 AC 222 ms
5,248 KB
testcase_36 AC 211 ms
5,248 KB
testcase_37 AC 209 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 89 ms
5,248 KB
testcase_41 AC 22 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 28 ms
5,248 KB
testcase_44 AC 4 ms
5,248 KB
testcase_45 AC 37 ms
5,248 KB
testcase_46 AC 15 ms
5,248 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