結果

問題 No.476 正しくない平均
ユーザー hebiyanhebiyan
提出日時 2017-02-01 00:42:01
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 10,729 ms
コンパイル使用メモリ 423,952 KB
実行使用メモリ 55,416 KB
最終ジャッジ日時 2024-04-30 12:24:30
合計ジャッジ時間 21,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
55,264 KB
testcase_01 AC 367 ms
55,164 KB
testcase_02 AC 338 ms
55,344 KB
testcase_03 AC 331 ms
55,308 KB
testcase_04 AC 336 ms
55,148 KB
testcase_05 AC 337 ms
55,416 KB
testcase_06 AC 336 ms
55,264 KB
testcase_07 AC 335 ms
55,280 KB
testcase_08 AC 333 ms
55,236 KB
testcase_09 AC 337 ms
55,320 KB
testcase_10 AC 338 ms
55,244 KB
testcase_11 AC 338 ms
55,220 KB
testcase_12 AC 335 ms
55,196 KB
testcase_13 AC 342 ms
55,324 KB
testcase_14 AC 338 ms
55,304 KB
testcase_15 AC 339 ms
55,204 KB
testcase_16 AC 339 ms
55,168 KB
testcase_17 AC 336 ms
55,416 KB
testcase_18 AC 333 ms
55,272 KB
testcase_19 WA -
testcase_20 AC 331 ms
55,268 KB
testcase_21 AC 338 ms
55,088 KB
testcase_22 AC 336 ms
55,252 KB
testcase_23 AC 336 ms
55,264 KB
testcase_24 AC 342 ms
55,264 KB
testcase_25 AC 341 ms
55,356 KB
testcase_26 AC 334 ms
55,164 KB
testcase_27 AC 335 ms
55,144 KB
testcase_28 AC 333 ms
55,152 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