結果

問題 No.1748 Parking Lot
ユーザー roarisroaris
提出日時 2021-11-19 22:09:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 55,044 KB
最終ジャッジ日時 2024-06-10 09:10:06
合計ジャッジ時間 2,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,244 KB
testcase_01 AC 40 ms
53,912 KB
testcase_02 AC 41 ms
53,824 KB
testcase_03 AC 41 ms
54,524 KB
testcase_04 AC 41 ms
55,044 KB
testcase_05 AC 46 ms
54,608 KB
testcase_06 AC 42 ms
53,600 KB
testcase_07 AC 41 ms
54,788 KB
testcase_08 AC 42 ms
54,984 KB
testcase_09 AC 42 ms
54,056 KB
testcase_10 AC 42 ms
54,412 KB
testcase_11 AC 40 ms
53,524 KB
testcase_12 AC 43 ms
54,784 KB
testcase_13 AC 43 ms
53,528 KB
testcase_14 AC 42 ms
54,312 KB
testcase_15 AC 42 ms
53,568 KB
testcase_16 AC 42 ms
54,436 KB
testcase_17 AC 41 ms
53,636 KB
testcase_18 AC 42 ms
53,600 KB
testcase_19 AC 44 ms
53,536 KB
testcase_20 AC 43 ms
53,412 KB
testcase_21 AC 42 ms
55,024 KB
testcase_22 AC 41 ms
54,224 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())

if K==N-1:
    print(N)
else:
    print(N-1)
0