結果

問題 No.1586 Equal Array
ユーザー merlinmerlin
提出日時 2021-07-08 22:24:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 1,000 ms
コード長 577 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 60,564 KB
最終ジャッジ日時 2024-07-01 12:43:01
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,092 KB
testcase_01 AC 54 ms
50,160 KB
testcase_02 AC 54 ms
49,816 KB
testcase_03 AC 54 ms
49,716 KB
testcase_04 AC 170 ms
59,852 KB
testcase_05 AC 167 ms
59,300 KB
testcase_06 AC 230 ms
60,232 KB
testcase_07 AC 224 ms
59,968 KB
testcase_08 AC 220 ms
60,548 KB
testcase_09 AC 222 ms
60,280 KB
testcase_10 AC 228 ms
60,060 KB
testcase_11 AC 55 ms
50,012 KB
testcase_12 AC 55 ms
49,844 KB
testcase_13 AC 227 ms
60,284 KB
testcase_14 AC 219 ms
60,124 KB
testcase_15 AC 225 ms
60,564 KB
testcase_16 AC 230 ms
60,420 KB
testcase_17 AC 54 ms
49,960 KB
testcase_18 AC 227 ms
59,980 KB
testcase_19 AC 237 ms
60,544 KB
testcase_20 AC 55 ms
49,900 KB
testcase_21 AC 54 ms
50,156 KB
testcase_22 AC 55 ms
50,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        int a,i; long sum=0;
        String s[]=bu.readLine().split(" ");
        for(i=0;i<n;i++)
        {
            a=Integer.parseInt(s[i]);
            sum+=a;
        }
        if(sum%n==0) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0