結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
55,204 KB
testcase_01 AC 347 ms
55,260 KB
testcase_02 AC 345 ms
55,216 KB
testcase_03 AC 352 ms
55,324 KB
testcase_04 AC 349 ms
55,308 KB
testcase_05 AC 348 ms
55,360 KB
testcase_06 AC 352 ms
55,284 KB
testcase_07 AC 348 ms
55,160 KB
testcase_08 AC 345 ms
55,292 KB
testcase_09 AC 348 ms
55,272 KB
testcase_10 AC 349 ms
55,264 KB
testcase_11 AC 351 ms
55,408 KB
testcase_12 AC 352 ms
55,260 KB
testcase_13 AC 345 ms
55,276 KB
testcase_14 AC 348 ms
55,208 KB
testcase_15 AC 352 ms
55,432 KB
testcase_16 AC 345 ms
55,348 KB
testcase_17 AC 355 ms
55,344 KB
testcase_18 AC 341 ms
55,408 KB
testcase_19 AC 349 ms
55,200 KB
testcase_20 AC 353 ms
55,212 KB
testcase_21 AC 346 ms
55,192 KB
testcase_22 AC 349 ms
55,180 KB
testcase_23 AC 348 ms
55,208 KB
testcase_24 AC 371 ms
55,204 KB
testcase_25 AC 352 ms
55,160 KB
testcase_26 AC 350 ms
55,248 KB
testcase_27 AC 350 ms
55,196 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