結果
問題 | No.1416 ショッピングモール |
ユーザー | 👑 Nachia |
提出日時 | 2021-03-05 22:47:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 1,000 ms |
コード長 | 439 bytes |
コンパイル時間 | 4,000 ms |
コンパイル使用メモリ | 253,644 KB |
最終ジャッジ日時 | 2025-01-19 11:42:10 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:14:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | rep(i,N){ int a; scanf("%d",&a); A[i]=a; } | ~~~~~^~~~~~~~~
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int N; vector<ll> A; int main(){ scanf("%d",&N); A.resize(N); rep(i,N){ int a; scanf("%d",&a); A[i]=a; } ll ans=0; sort(A.begin(),A.end(),greater<ll>()); rep(i,N){ int f=0; while(i>=(1<<(f+1))-1) f++; ans+=A[i]*f; } printf("%lld\n",ans); return 0; }