結果

問題 No.1586 Equal Array
ユーザー 箱星箱星
提出日時 2021-07-08 23:33:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 475 ms / 1,000 ms
コード長 691 bytes
コンパイル時間 11,923 ms
コンパイル使用メモリ 428,220 KB
実行使用メモリ 73,192 KB
最終ジャッジ日時 2024-07-01 13:17:03
合計ジャッジ時間 22,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
57,864 KB
testcase_01 AC 302 ms
57,708 KB
testcase_02 AC 303 ms
57,620 KB
testcase_03 AC 302 ms
58,028 KB
testcase_04 AC 452 ms
66,536 KB
testcase_05 AC 452 ms
66,960 KB
testcase_06 AC 475 ms
70,892 KB
testcase_07 AC 461 ms
70,688 KB
testcase_08 AC 464 ms
70,696 KB
testcase_09 AC 466 ms
70,696 KB
testcase_10 AC 449 ms
70,840 KB
testcase_11 AC 301 ms
57,700 KB
testcase_12 AC 305 ms
57,728 KB
testcase_13 AC 458 ms
71,148 KB
testcase_14 AC 454 ms
70,848 KB
testcase_15 AC 452 ms
71,016 KB
testcase_16 AC 447 ms
70,848 KB
testcase_17 AC 301 ms
57,600 KB
testcase_18 AC 460 ms
70,684 KB
testcase_19 AC 460 ms
73,192 KB
testcase_20 AC 301 ms
57,812 KB
testcase_21 AC 304 ms
57,800 KB
testcase_22 AC 302 ms
57,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextLong() }
    val sum = a.sum()
    println(if (sum % n == 0L) "Yes" else "No")
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0