結果

問題 No.476 正しくない平均
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-06-01 17:34:28
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 12,780 ms
コンパイル使用メモリ 428,660 KB
実行使用メモリ 51,424 KB
最終ジャッジ日時 2024-11-20 08:50:30
合計ジャッジ時間 20,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
51,268 KB
testcase_01 AC 304 ms
51,268 KB
testcase_02 AC 313 ms
51,364 KB
testcase_03 AC 308 ms
51,288 KB
testcase_04 AC 309 ms
51,248 KB
testcase_05 AC 313 ms
50,980 KB
testcase_06 AC 312 ms
51,240 KB
testcase_07 AC 310 ms
51,256 KB
testcase_08 AC 310 ms
51,168 KB
testcase_09 AC 312 ms
51,176 KB
testcase_10 AC 313 ms
51,244 KB
testcase_11 AC 312 ms
51,332 KB
testcase_12 AC 312 ms
51,100 KB
testcase_13 AC 312 ms
51,144 KB
testcase_14 AC 311 ms
51,284 KB
testcase_15 AC 310 ms
51,272 KB
testcase_16 AC 307 ms
51,384 KB
testcase_17 AC 313 ms
51,424 KB
testcase_18 AC 316 ms
51,008 KB
testcase_19 AC 309 ms
51,224 KB
testcase_20 AC 306 ms
51,096 KB
testcase_21 AC 320 ms
51,220 KB
testcase_22 AC 318 ms
51,000 KB
testcase_23 AC 308 ms
51,232 KB
testcase_24 AC 305 ms
51,128 KB
testcase_25 AC 312 ms
51,392 KB
testcase_26 AC 312 ms
51,292 KB
testcase_27 AC 311 ms
51,256 KB
testcase_28 AC 348 ms
51,252 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val cin = Scanner(System.`in`)
    var N = cin.nextLong()
    var K = cin.nextLong()

    var sm = 0L
    for(i in 1..N) {
        var x = cin.nextInt()
        sm += x
    }

    println(if(sm == K * N) "YES" else "NO")
}
0