結果

問題 No.1748 Parking Lot
ユーザー ysys
提出日時 2022-03-09 02:04:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 53,956 KB
最終ジャッジ日時 2024-07-26 20:09:08
合計ジャッジ時間 2,404 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,108 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 36 ms
52,204 KB
testcase_03 AC 35 ms
53,236 KB
testcase_04 AC 35 ms
52,340 KB
testcase_05 AC 35 ms
52,088 KB
testcase_06 AC 36 ms
52,168 KB
testcase_07 AC 35 ms
53,020 KB
testcase_08 AC 39 ms
52,528 KB
testcase_09 AC 39 ms
52,508 KB
testcase_10 AC 38 ms
53,956 KB
testcase_11 AC 39 ms
52,000 KB
testcase_12 AC 38 ms
52,556 KB
testcase_13 AC 39 ms
52,364 KB
testcase_14 AC 39 ms
52,068 KB
testcase_15 AC 39 ms
51,932 KB
testcase_16 AC 39 ms
52,752 KB
testcase_17 AC 41 ms
52,864 KB
testcase_18 AC 39 ms
52,500 KB
testcase_19 AC 37 ms
53,492 KB
testcase_20 AC 40 ms
52,204 KB
testcase_21 AC 39 ms
52,264 KB
testcase_22 AC 39 ms
53,160 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
if N - 1 == K:
  print(N)
else:
  print(N - 1)
0