結果

問題 No.1748 Parking Lot
ユーザー irumo8202irumo8202
提出日時 2022-01-27 18:43:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 85 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 86,676 KB
実行使用メモリ 71,428 KB
最終ジャッジ日時 2023-08-26 20:09:29
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,264 KB
testcase_01 AC 65 ms
71,132 KB
testcase_02 AC 65 ms
71,232 KB
testcase_03 AC 66 ms
71,228 KB
testcase_04 AC 67 ms
71,252 KB
testcase_05 AC 62 ms
71,084 KB
testcase_06 AC 66 ms
70,788 KB
testcase_07 AC 68 ms
71,304 KB
testcase_08 AC 63 ms
71,040 KB
testcase_09 AC 65 ms
71,320 KB
testcase_10 AC 65 ms
71,348 KB
testcase_11 AC 64 ms
71,236 KB
testcase_12 AC 64 ms
71,028 KB
testcase_13 AC 64 ms
71,272 KB
testcase_14 AC 67 ms
71,120 KB
testcase_15 AC 67 ms
70,792 KB
testcase_16 AC 63 ms
70,956 KB
testcase_17 AC 63 ms
71,232 KB
testcase_18 AC 66 ms
71,120 KB
testcase_19 AC 65 ms
71,048 KB
testcase_20 AC 65 ms
71,184 KB
testcase_21 AC 64 ms
71,036 KB
testcase_22 AC 64 ms
71,428 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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