結果

問題 No.1748 Parking Lot
ユーザー yudedakoyudedako
提出日時 2022-01-25 00:13:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 922 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 9,107 ms
コンパイル使用メモリ 263,092 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-05-08 21:01:51
合計ジャッジ時間 33,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
62,980 KB
testcase_01 AC 907 ms
62,940 KB
testcase_02 AC 905 ms
62,980 KB
testcase_03 AC 913 ms
63,068 KB
testcase_04 AC 905 ms
63,056 KB
testcase_05 AC 899 ms
62,936 KB
testcase_06 AC 910 ms
62,904 KB
testcase_07 AC 914 ms
63,104 KB
testcase_08 AC 909 ms
63,232 KB
testcase_09 AC 909 ms
62,880 KB
testcase_10 AC 899 ms
62,968 KB
testcase_11 AC 922 ms
63,100 KB
testcase_12 AC 916 ms
63,116 KB
testcase_13 AC 904 ms
62,952 KB
testcase_14 AC 901 ms
62,888 KB
testcase_15 AC 907 ms
63,140 KB
testcase_16 AC 912 ms
63,180 KB
testcase_17 AC 911 ms
62,920 KB
testcase_18 AC 918 ms
63,100 KB
testcase_19 AC 910 ms
63,208 KB
testcase_20 AC 919 ms
62,852 KB
testcase_21 AC 919 ms
62,772 KB
testcase_22 AC 909 ms
62,920 KB
testcase_23 AC 916 ms
63,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.*

@main def main =
  val Array(n, k) = readLine().split(' ').map(_.toInt)
  if n == 1 || k + 1 == n then
    println(n)
  else
    println(n - 1)
0