結果

問題 No.476 正しくない平均
ユーザー hebiyanhebiyan
提出日時 2017-02-01 01:08:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 11,626 ms
コンパイル使用メモリ 425,192 KB
実行使用メモリ 51,428 KB
最終ジャッジ日時 2024-11-20 07:23:20
合計ジャッジ時間 20,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,260 KB
testcase_01 AC 312 ms
51,404 KB
testcase_02 AC 308 ms
51,156 KB
testcase_03 AC 303 ms
51,268 KB
testcase_04 AC 305 ms
51,264 KB
testcase_05 AC 301 ms
51,372 KB
testcase_06 AC 298 ms
51,116 KB
testcase_07 AC 302 ms
51,384 KB
testcase_08 AC 307 ms
51,248 KB
testcase_09 AC 303 ms
51,268 KB
testcase_10 AC 313 ms
51,236 KB
testcase_11 AC 305 ms
51,236 KB
testcase_12 AC 306 ms
51,380 KB
testcase_13 AC 311 ms
51,380 KB
testcase_14 AC 305 ms
51,292 KB
testcase_15 AC 309 ms
51,264 KB
testcase_16 AC 316 ms
51,340 KB
testcase_17 AC 308 ms
51,428 KB
testcase_18 AC 306 ms
51,036 KB
testcase_19 AC 300 ms
51,108 KB
testcase_20 AC 313 ms
51,276 KB
testcase_21 AC 312 ms
51,128 KB
testcase_22 AC 319 ms
51,092 KB
testcase_23 AC 308 ms
51,256 KB
testcase_24 AC 310 ms
51,264 KB
testcase_25 AC 315 ms
51,128 KB
testcase_26 AC 317 ms
51,024 KB
testcase_27 AC 311 ms
51,392 KB
testcase_28 AC 316 ms
51,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*
import java.math.BigInteger

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

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

	var m = BigInteger.ZERO
	var sum = BigInteger.ZERO
	while (m < n) {
		sum += cin.nextBigInteger()
		m = m + BigInteger.ONE
	}

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