結果
問題 |
No.476 正しくない平均
|
ユーザー |
![]() |
提出日時 | 2017-06-19 19:49:24 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 358 bytes |
コンパイル時間 | 2,844 ms |
コンパイル使用メモリ | 74,284 KB |
実行使用メモリ | 41,660 KB |
最終ジャッジ日時 | 2024-10-02 07:46:06 |
合計ジャッジ時間 | 6,859 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); long a = sc.nextLong(); long sum = 0; for(int i = 0; i < n; i++) { sum += sc.nextLong(); } String ans = "NO"; if(sum == a * n) ans = "YES"; System.out.println(ans); } }