結果

問題 No.1586 Equal Array
ユーザー fukafukatanifukafukatani
提出日時 2021-07-14 09:34:10
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 224 bytes
コンパイル時間 13,320 ms
コンパイル使用メモリ 276,200 KB
実行使用メモリ 80,012 KB
最終ジャッジ日時 2024-07-03 08:29:47
合計ジャッジ時間 46,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 965 ms
65,104 KB
testcase_01 AC 959 ms
65,108 KB
testcase_02 AC 952 ms
65,432 KB
testcase_03 AC 957 ms
65,172 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 997 ms
65,396 KB
testcase_12 AC 964 ms
65,284 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 997 ms
64,956 KB
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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