結果

問題 No.1748 Parking Lot
ユーザー FromBooskaFromBooska
提出日時 2023-03-17 13:01:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 196 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-09-18 09:56:23
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,212 KB
testcase_01 AC 37 ms
52,148 KB
testcase_02 AC 37 ms
52,296 KB
testcase_03 AC 37 ms
52,328 KB
testcase_04 AC 37 ms
52,776 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 36 ms
51,940 KB
testcase_07 AC 36 ms
52,236 KB
testcase_08 AC 38 ms
52,280 KB
testcase_09 AC 35 ms
52,384 KB
testcase_10 AC 36 ms
52,280 KB
testcase_11 AC 36 ms
51,964 KB
testcase_12 AC 37 ms
51,848 KB
testcase_13 AC 36 ms
51,976 KB
testcase_14 AC 37 ms
52,248 KB
testcase_15 AC 37 ms
52,400 KB
testcase_16 AC 37 ms
52,868 KB
testcase_17 AC 36 ms
51,884 KB
testcase_18 AC 36 ms
53,024 KB
testcase_19 AC 37 ms
52,468 KB
testcase_20 AC 37 ms
52,656 KB
testcase_21 AC 38 ms
52,188 KB
testcase_22 AC 37 ms
53,500 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 実験するとわかる、実験は三重ループだった
# K==N-1のときはans = N
# else ans = N-1
N, K = map(int, input().split())
if K == N-1:
    ans = N
else:
    ans = N-1
print(ans)
0