結果

問題 No.1131 Deviation Score
ユーザー 👑 CleyLCleyL
提出日時 2021-08-08 15:09:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 73,600 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 11:30:10
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 161 ms
5,376 KB
testcase_03 AC 74 ms
5,376 KB
testcase_04 AC 145 ms
5,376 KB
testcase_05 AC 54 ms
5,376 KB
testcase_06 AC 159 ms
5,376 KB
testcase_07 AC 76 ms
5,376 KB
testcase_08 AC 140 ms
5,376 KB
testcase_09 AC 52 ms
5,376 KB
testcase_10 AC 134 ms
5,376 KB
testcase_11 AC 139 ms
5,376 KB
testcase_12 AC 120 ms
5,376 KB
testcase_13 AC 153 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 147 ms
5,376 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 182 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
int main(){
    int n;cin>>n;
    double a = 0;
    vector<int> A(n);
    for(int i = 0; n > i; i++){
        cin>>A[i];
        a+=A[i];
    }
    a/=n;
    for(int i = 0; n > i; i++){
        cout << floor(50-(a-A[i])/2) << endl;
    }
}
0