結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 16:09:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 11,318 ms
コンパイル使用メモリ 434,464 KB
実行使用メモリ 56,976 KB
最終ジャッジ日時 2024-11-20 09:47:26
合計ジャッジ時間 21,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
56,880 KB
testcase_01 AC 317 ms
56,976 KB
testcase_02 AC 312 ms
56,944 KB
testcase_03 AC 315 ms
56,720 KB
testcase_04 AC 313 ms
56,784 KB
testcase_05 AC 315 ms
56,856 KB
testcase_06 AC 313 ms
56,896 KB
testcase_07 AC 312 ms
56,972 KB
testcase_08 AC 314 ms
56,948 KB
testcase_09 AC 315 ms
56,868 KB
testcase_10 AC 308 ms
56,960 KB
testcase_11 AC 313 ms
56,708 KB
testcase_12 AC 317 ms
56,724 KB
testcase_13 AC 320 ms
56,768 KB
testcase_14 AC 313 ms
56,964 KB
testcase_15 AC 316 ms
56,724 KB
testcase_16 AC 317 ms
56,704 KB
testcase_17 AC 318 ms
56,848 KB
testcase_18 AC 317 ms
56,840 KB
testcase_19 AC 318 ms
56,800 KB
testcase_20 AC 317 ms
56,820 KB
testcase_21 AC 312 ms
56,760 KB
testcase_22 AC 315 ms
56,836 KB
testcase_23 AC 315 ms
56,712 KB
testcase_24 AC 313 ms
56,964 KB
testcase_25 AC 318 ms
56,944 KB
testcase_26 AC 321 ms
56,856 KB
testcase_27 AC 314 ms
56,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
  val (m,n) = readLine()!!.split(" ").map { x -> x.toLong() }
  if( m >= n && 1 <= n ) {
    if( m + 1L == n * 2L )
      println(m - 1L)
    else
      println(m - 2L)
  } else {
    println(0)
  }
}
0