結果
問題 |
No.476 正しくない平均
|
ユーザー |
|
提出日時 | 2017-12-07 22:47:19 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 448 ms |
コンパイル使用メモリ | 56,284 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 05:22:16 |
合計ジャッジ時間 | 1,388 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 WA * 9 |
ソースコード
#include <iostream> using namespace std; int main(){ int n; float ans; cin >> n >> ans; int x; float sum = 0; for(int i = 0; i < n; i++){ cin >> x; sum += x; } if((sum/n == ans)) cout << "YES" << endl; else cout << "NO" << endl; return 0; }