結果

問題 No.476 正しくない平均
ユーザー zaichuzaichu
提出日時 2017-01-28 03:15:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 72,372 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-24 09:57:46
合計ジャッジ時間 1,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

double sum(vector<int> d){
  double total = 0;
  for(int i = 0; i < d.size(); i++){
    total += d[i];
  }
  return total;
}

void solve() {
  int n,a;
  cin >> n >> a;
  vector<int> d(n);
  for(auto &x : d) cin >> x;
  double ave = sum(d) / n;
  cout << (ave == a ? "YES" : "NO") << endl;
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(0);

  solve();

  return 0;
}
0