結果

問題 No.476 正しくない平均
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-06-01 17:32:45
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 10,574 ms
コンパイル使用メモリ 428,468 KB
実行使用メモリ 55,412 KB
最終ジャッジ日時 2024-11-20 08:47:34
合計ジャッジ時間 21,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
55,336 KB
testcase_01 AC 311 ms
55,120 KB
testcase_02 AC 303 ms
55,116 KB
testcase_03 AC 307 ms
55,372 KB
testcase_04 AC 299 ms
55,256 KB
testcase_05 AC 306 ms
55,340 KB
testcase_06 AC 308 ms
55,040 KB
testcase_07 AC 313 ms
55,304 KB
testcase_08 AC 313 ms
55,248 KB
testcase_09 AC 304 ms
55,252 KB
testcase_10 AC 305 ms
55,108 KB
testcase_11 AC 305 ms
54,988 KB
testcase_12 AC 306 ms
55,340 KB
testcase_13 AC 310 ms
55,100 KB
testcase_14 AC 316 ms
55,244 KB
testcase_15 AC 319 ms
55,264 KB
testcase_16 AC 318 ms
55,412 KB
testcase_17 AC 314 ms
55,388 KB
testcase_18 AC 308 ms
55,208 KB
testcase_19 WA -
testcase_20 AC 316 ms
55,372 KB
testcase_21 AC 319 ms
55,260 KB
testcase_22 AC 318 ms
55,120 KB
testcase_23 AC 312 ms
55,384 KB
testcase_24 AC 306 ms
55,216 KB
testcase_25 AC 301 ms
55,252 KB
testcase_26 AC 299 ms
55,152 KB
testcase_27 AC 304 ms
55,240 KB
testcase_28 AC 350 ms
55,384 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.nextInt()
    var K = cin.nextInt()

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

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