結果
問題 | No.476 正しくない平均 |
ユーザー | toku |
提出日時 | 2018-12-16 02:57:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 989 bytes |
コンパイル時間 | 1,291 ms |
コンパイル使用メモリ | 157,548 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 06:22:36 |
合計ジャッジ時間 | 5,980 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:32: warning: ‘n’ is used uninitialized [-Wuninitialized] 5 | #define REP(i,n) for(int i=0; i<int(n); i++) | ^ main.cpp:27:13: note: ‘n’ was declared here 27 | int n, a; | ^ main.cpp:38:9: warning: ‘a’ may be used uninitialized [-Wmaybe-uninitialized] 38 | if (sum / n != a) { | ^~
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<int(n); i++) #define FOR(i,m,n) for(int i=int(m); i<int(n); i++) #define ALL(obj) (obj).begin(),(obj).end() #define VI vector<int> #define VLL vector<long long> #define VVI vector<vector<int>> #define VVLL vector<vector<long long>> #define VC vector<char> #define VS vector<string> #define VVC vector<vector<char>> #define fore(i,a) for(auto &i:a) typedef long long ll; typedef pair <int, int> P; template<class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = 2147483647; const ll INFL = 9223372036854775807; const ll mod = 1000000007; int main() { int n, a; int sum = 0; REP(i, n) { int b; cin >> b; sum += b; } if (sum%n) { cout << "NO" << endl; return 0; } if (sum / n != a) { cout << "NO" << endl; } else cout << "YES" << endl; return 0; }