結果

問題 No.1748 Parking Lot
ユーザー syunsukesyunsuke
提出日時 2021-11-22 13:45:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-06-23 23:51:26
合計ジャッジ時間 2,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,164 KB
testcase_01 AC 38 ms
52,044 KB
testcase_02 AC 36 ms
52,392 KB
testcase_03 AC 37 ms
52,632 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 37 ms
52,132 KB
testcase_06 AC 42 ms
51,824 KB
testcase_07 AC 43 ms
53,288 KB
testcase_08 AC 42 ms
52,216 KB
testcase_09 AC 48 ms
53,100 KB
testcase_10 AC 43 ms
52,832 KB
testcase_11 AC 42 ms
53,776 KB
testcase_12 AC 44 ms
52,640 KB
testcase_13 AC 42 ms
53,656 KB
testcase_14 AC 42 ms
52,328 KB
testcase_15 AC 43 ms
52,204 KB
testcase_16 AC 44 ms
52,748 KB
testcase_17 AC 43 ms
52,064 KB
testcase_18 AC 43 ms
52,152 KB
testcase_19 AC 44 ms
52,600 KB
testcase_20 AC 44 ms
53,080 KB
testcase_21 AC 43 ms
52,856 KB
testcase_22 AC 43 ms
53,840 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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