結果

問題 No.476 正しくない平均
ユーザー hebiyanhebiyan
提出日時 2017-02-01 00:42:01
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 10,841 ms
コンパイル使用メモリ 430,872 KB
実行使用メモリ 55,528 KB
最終ジャッジ日時 2024-11-20 07:22:23
合計ジャッジ時間 22,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
51,104 KB
testcase_01 AC 345 ms
50,996 KB
testcase_02 AC 352 ms
51,312 KB
testcase_03 AC 350 ms
51,216 KB
testcase_04 AC 348 ms
51,116 KB
testcase_05 AC 347 ms
51,044 KB
testcase_06 AC 352 ms
50,988 KB
testcase_07 AC 354 ms
51,216 KB
testcase_08 AC 355 ms
50,996 KB
testcase_09 AC 353 ms
51,084 KB
testcase_10 AC 352 ms
51,324 KB
testcase_11 AC 346 ms
51,100 KB
testcase_12 AC 373 ms
51,028 KB
testcase_13 AC 380 ms
51,352 KB
testcase_14 AC 356 ms
51,088 KB
testcase_15 AC 355 ms
51,160 KB
testcase_16 AC 349 ms
51,056 KB
testcase_17 AC 349 ms
51,288 KB
testcase_18 AC 345 ms
51,084 KB
testcase_19 WA -
testcase_20 AC 352 ms
51,284 KB
testcase_21 AC 351 ms
51,228 KB
testcase_22 AC 359 ms
51,360 KB
testcase_23 AC 357 ms
51,088 KB
testcase_24 AC 348 ms
51,380 KB
testcase_25 AC 348 ms
51,076 KB
testcase_26 AC 354 ms
51,224 KB
testcase_27 AC 350 ms
51,188 KB
testcase_28 AC 346 ms
51,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4: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`)

	val n = cin.nextInt()
	val avr = cin.nextInt()

	var m = 0
	var sum = 0
	while (m < n) {
		sum += cin.nextInt()
		m++
	}

	if ((n * avr) == sum) {
		println("YES")
	}
	else {
		println("NO")
	}
}
0