結果
問題 | No.549 素材合成システム |
ユーザー |
![]() |
提出日時 | 2017-07-28 22:56:31 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 865 ms |
コンパイル使用メモリ | 74,308 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 04:25:34 |
合計ジャッジ時間 | 2,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:45:29: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘ll*’ {aka ‘long long int*’} [-Wformat=] 45 | REP( i, N ) scanf("%d", X+i ); | ~^ ~~~ | | | | int* ll* {aka long long int*} | %lld main.cpp:45:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 45 | REP( i, N ) scanf("%d", X+i ); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <string> #include <map> #include <numeric> #include <bitset> #include <vector> #include <queue> using namespace std; typedef long long ll; #define FOR(i,a,b) for(ll i = (a); i < (b); i++ ) #define REP(i, n) FOR(i,0,n) typedef pair< ll, ll > cp2; typedef pair< ll, cp2 > cp3; #define fi first #define se second #define sec se.fi #define thr se.se const ll mod = 1000000007; // 123456789 /////////////////////////////////////////////// // // /////////////////////////////////////////////// //////////////////////////////////////////////// //////////////////////////////////////////////// int N; ll X[112345]; ll ans; int main(){ cin>>N; REP( i, N ) scanf("%d", X+i ); sort( X, X+N ); ans = X[N-1]; REP( i, N-1 ){ ans += X[i]/2; } cout<<ans<<endl; return 0; }