結果

問題 No.549 素材合成システム
ユーザー ldsyb
提出日時 2017-07-28 22:39:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 70,028 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 03:13:41
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int n;
	cin >> n;
	int x[n];
	for(int i = 0; i < n; i++) cin >> x[i];
	sort(x, x + n);
	for(int i = 0; i < n - 1; i++) x[n - 1] += x[i] / 2;
	cout << x[n - 1] << endl;
}
0