結果
問題 |
No.549 素材合成システム
|
ユーザー |
|
提出日時 | 2020-10-16 12:40:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 365 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 199,628 KB |
最終ジャッジ日時 | 2025-01-15 07:47:35 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n); for(int i=0;i<n;i++){ cin >> a[i]; } sort(a.rbegin(), a.rend()); int res=a[0]; for(int i=1;i<n;i++){ res+=a[i]/2; } cout << res << endl; }