結果

問題 No.1586 Equal Array
ユーザー fukafukatanifukafukatani
提出日時 2021-07-14 09:35:03
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 225 bytes
コンパイル時間 11,033 ms
コンパイル使用メモリ 275,764 KB
実行使用メモリ 80,436 KB
最終ジャッジ日時 2024-07-03 08:30:29
合計ジャッジ時間 40,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 880 ms
65,260 KB
testcase_01 AC 894 ms
65,168 KB
testcase_02 AC 907 ms
65,204 KB
testcase_03 AC 908 ms
65,368 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 898 ms
65,528 KB
testcase_12 AC 897 ms
65,244 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 893 ms
65,264 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 894 ms
65,140 KB
testcase_21 AC 899 ms
65,164 KB
testcase_22 AC 897 ms
65,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val n = sc.nextInt
  val p = List.fill(n)(sc.nextLong)
  if (p.sum % n.asInstanceOf[Long] == 0l) {
    println("Yes")
  } else {
    println("No")
  }
}
0