結果

問題 No.476 正しくない平均
ユーザー htkbhtkb
提出日時 2017-02-01 22:27:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 9,954 ms
コンパイル使用メモリ 432,660 KB
実行使用メモリ 51,488 KB
最終ジャッジ日時 2024-11-20 07:24:23
合計ジャッジ時間 20,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
51,252 KB
testcase_01 AC 310 ms
51,380 KB
testcase_02 AC 309 ms
51,252 KB
testcase_03 AC 309 ms
50,996 KB
testcase_04 AC 313 ms
51,236 KB
testcase_05 AC 308 ms
51,264 KB
testcase_06 AC 316 ms
51,112 KB
testcase_07 AC 311 ms
51,236 KB
testcase_08 AC 315 ms
51,128 KB
testcase_09 AC 310 ms
51,392 KB
testcase_10 AC 311 ms
51,120 KB
testcase_11 AC 307 ms
51,232 KB
testcase_12 AC 315 ms
51,344 KB
testcase_13 AC 324 ms
51,424 KB
testcase_14 AC 309 ms
51,404 KB
testcase_15 AC 307 ms
51,488 KB
testcase_16 AC 317 ms
51,216 KB
testcase_17 AC 326 ms
51,388 KB
testcase_18 AC 319 ms
51,156 KB
testcase_19 AC 308 ms
51,376 KB
testcase_20 AC 308 ms
51,188 KB
testcase_21 AC 309 ms
51,132 KB
testcase_22 AC 314 ms
51,240 KB
testcase_23 AC 318 ms
51,260 KB
testcase_24 AC 312 ms
51,152 KB
testcase_25 AC 307 ms
51,124 KB
testcase_26 AC 302 ms
51,092 KB
testcase_27 AC 302 ms
51,268 KB
testcase_28 AC 309 ms
51,380 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 sc = Scanner(System.`in`)
    val n = sc.nextInt()
    val a = sc.nextLong()*n;
    var total:Long = 0;
    for (i in 1..n) {
        total += sc.nextLong()
    }
    if (a == total) println("YES") else println("NO")

}
0