結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー R_FR_F
提出日時 2017-12-08 15:51:04
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 532 bytes
コンパイル時間 11,517 ms
コンパイル使用メモリ 433,340 KB
実行使用メモリ 275,680 KB
最終ジャッジ日時 2024-04-30 16:38:59
合計ジャッジ時間 25,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
55,256 KB
testcase_01 AC 355 ms
55,380 KB
testcase_02 AC 345 ms
55,292 KB
testcase_03 AC 344 ms
55,292 KB
testcase_04 AC 342 ms
55,044 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 354 ms
55,160 KB
testcase_17 AC 354 ms
55,172 KB
testcase_18 AC 355 ms
55,308 KB
testcase_19 AC 352 ms
55,296 KB
testcase_20 AC 356 ms
57,420 KB
testcase_21 AC 353 ms
57,420 KB
testcase_22 AC 389 ms
73,848 KB
testcase_23 AC 388 ms
73,752 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 341 ms
55,244 KB
testcase_27 AC 348 ms
55,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:18:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner

class No521() {
	var input = Scanner(System. `in`)
	val boxes = input.nextInt()
	val danger = input.nextInt()
	var boxList = Array<Boolean>(boxes, {false})

	fun dengerous(): Array<Boolean> {
		if (0 < danger && danger <= boxes) {
			boxList[danger - 1] = true
			boxList[boxList.size - danger] = true
		}
		return boxList
	}
}

fun main(args: Array<String>) {
	val no521 = No521()
	val safety = no521.dengerous().filter{i -> i == false}.size
	if (safety == no521.boxes) println(0)
	else println(safety)
}
0