結果

問題 No.994 ばらばらコイン
ユーザー da_louisda_louis
提出日時 2020-02-22 18:37:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 11,530 ms
コンパイル使用メモリ 436,108 KB
実行使用メモリ 51,924 KB
最終ジャッジ日時 2024-10-09 20:41:39
合計ジャッジ時間 20,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
51,552 KB
testcase_01 AC 321 ms
51,692 KB
testcase_02 AC 325 ms
51,672 KB
testcase_03 AC 322 ms
51,804 KB
testcase_04 AC 321 ms
51,672 KB
testcase_05 AC 327 ms
51,856 KB
testcase_06 AC 324 ms
51,900 KB
testcase_07 AC 323 ms
51,804 KB
testcase_08 AC 325 ms
51,644 KB
testcase_09 AC 326 ms
51,752 KB
testcase_10 AC 323 ms
51,824 KB
testcase_11 AC 321 ms
51,468 KB
testcase_12 AC 323 ms
51,796 KB
testcase_13 AC 323 ms
51,480 KB
testcase_14 AC 319 ms
51,608 KB
testcase_15 AC 333 ms
51,604 KB
testcase_16 AC 323 ms
51,584 KB
testcase_17 AC 320 ms
51,696 KB
testcase_18 AC 321 ms
51,584 KB
testcase_19 AC 324 ms
51,676 KB
testcase_20 AC 323 ms
51,664 KB
testcase_21 AC 324 ms
51,924 KB
testcase_22 AC 328 ms
51,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = p994()
         ^

ソースコード

diff #

fun main(args: Array<String>) = p994()

fun p994() {
    val (n, k) = readLine()!!.split(' ').map { it.toInt() }

    val answer = if (k > n) -1 else Math.max(k - 1, 0)

    println(answer)
}
0