結果

問題 No.476 正しくない平均
ユーザー hebiyanhebiyan
提出日時 2017-02-01 01:08:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 11,812 ms
コンパイル使用メモリ 432,320 KB
実行使用メモリ 55,504 KB
最終ジャッジ日時 2024-04-30 12:25:27
合計ジャッジ時間 23,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
55,168 KB
testcase_01 AC 351 ms
55,324 KB
testcase_02 AC 353 ms
55,260 KB
testcase_03 AC 358 ms
55,248 KB
testcase_04 AC 354 ms
55,204 KB
testcase_05 AC 352 ms
55,324 KB
testcase_06 AC 357 ms
55,268 KB
testcase_07 AC 347 ms
55,148 KB
testcase_08 AC 354 ms
55,308 KB
testcase_09 AC 350 ms
55,280 KB
testcase_10 AC 360 ms
55,340 KB
testcase_11 AC 361 ms
55,180 KB
testcase_12 AC 352 ms
55,328 KB
testcase_13 AC 361 ms
55,220 KB
testcase_14 AC 361 ms
55,336 KB
testcase_15 AC 357 ms
55,352 KB
testcase_16 AC 360 ms
55,176 KB
testcase_17 AC 359 ms
55,256 KB
testcase_18 AC 360 ms
55,504 KB
testcase_19 AC 359 ms
55,372 KB
testcase_20 AC 361 ms
55,340 KB
testcase_21 AC 374 ms
55,280 KB
testcase_22 AC 354 ms
55,172 KB
testcase_23 AC 358 ms
55,344 KB
testcase_24 AC 355 ms
55,304 KB
testcase_25 AC 350 ms
55,312 KB
testcase_26 AC 352 ms
55,252 KB
testcase_27 AC 350 ms
55,172 KB
testcase_28 AC 352 ms
55,160 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