結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー R_FR_F
提出日時 2017-12-08 16:29:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 12,444 ms
コンパイル使用メモリ 434,760 KB
実行使用メモリ 55,440 KB
最終ジャッジ日時 2024-11-20 13:26:18
合計ジャッジ時間 21,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
55,228 KB
testcase_01 AC 316 ms
55,176 KB
testcase_02 AC 311 ms
55,284 KB
testcase_03 AC 322 ms
55,168 KB
testcase_04 AC 325 ms
55,320 KB
testcase_05 AC 322 ms
55,248 KB
testcase_06 AC 321 ms
55,224 KB
testcase_07 AC 317 ms
55,308 KB
testcase_08 AC 324 ms
55,344 KB
testcase_09 AC 333 ms
55,200 KB
testcase_10 AC 332 ms
55,440 KB
testcase_11 AC 329 ms
55,400 KB
testcase_12 AC 318 ms
55,368 KB
testcase_13 AC 311 ms
55,280 KB
testcase_14 AC 388 ms
55,360 KB
testcase_15 AC 372 ms
55,400 KB
testcase_16 AC 345 ms
55,188 KB
testcase_17 AC 342 ms
55,324 KB
testcase_18 AC 336 ms
55,280 KB
testcase_19 AC 337 ms
55,288 KB
testcase_20 AC 340 ms
55,280 KB
testcase_21 AC 338 ms
55,184 KB
testcase_22 AC 340 ms
55,196 KB
testcase_23 AC 344 ms
55,364 KB
testcase_24 AC 338 ms
55,180 KB
testcase_25 AC 338 ms
55,348 KB
testcase_26 AC 352 ms
55,184 KB
testcase_27 AC 338 ms
55,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17: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()

	fun dengerous() {
		if (danger == 0 || danger > boxes) println(0)
		else {
			if (boxes % 2 == 1 && danger == Math.round(boxes / 2.0).toInt()) println(boxes - 1)
			else println(boxes - 2)
		}
	}
}

fun main(args: Array<String>) {
	val no521 = No521()
	no521.dengerous()
}
0