結果

問題 No.191 供託金
ユーザー naipia
提出日時 2018-05-15 16:04:38
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 164,104 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 12:07:54
合計ジャッジ時間 2,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int N,in,l,ans=0;
    vector<int> c;

    cin >> N;
    while(cin >> in) c.push_back(in);
    sort(c.begin(),c.end());
    l = accumulate(c.begin(),c.end(),0)/10;

    for(int i=0;i<c.size();i++){
        if(l>=c[i]) ans++;
        else break;
    }

    cout << ans*30 << endl;


    return 0;
}
0