結果

問題 No.1748 Parking Lot
ユーザー 👑 KazunKazun
提出日時 2021-11-19 21:34:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 53,276 KB
最終ジャッジ日時 2024-06-10 08:05:05
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,700 KB
testcase_01 AC 32 ms
52,028 KB
testcase_02 AC 33 ms
52,616 KB
testcase_03 AC 35 ms
52,684 KB
testcase_04 AC 32 ms
52,952 KB
testcase_05 AC 33 ms
52,688 KB
testcase_06 AC 34 ms
52,664 KB
testcase_07 AC 36 ms
52,084 KB
testcase_08 AC 34 ms
52,080 KB
testcase_09 AC 33 ms
52,268 KB
testcase_10 AC 33 ms
53,004 KB
testcase_11 AC 33 ms
52,036 KB
testcase_12 AC 35 ms
52,068 KB
testcase_13 AC 32 ms
53,128 KB
testcase_14 AC 32 ms
53,276 KB
testcase_15 AC 33 ms
51,992 KB
testcase_16 AC 33 ms
52,192 KB
testcase_17 AC 34 ms
52,012 KB
testcase_18 AC 33 ms
52,936 KB
testcase_19 AC 32 ms
51,624 KB
testcase_20 AC 34 ms
52,556 KB
testcase_21 AC 34 ms
52,568 KB
testcase_22 AC 34 ms
52,464 KB
testcase_23 AC 33 ms
53,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def greedy(N,K):
    X=[0]*(N+1); X[K]=1
    S=[K]

    for _ in range(N-1):
        alpha=-1; I=0
        for k in range(1,N+1):
            if X[k]==1:
                continue

            beta=float("inf")
            for a in S:
                beta=min(beta,abs(k-a))

            if alpha<beta:
                alpha=beta
                I=k

        S.append(I)
    return S

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

"""
for K in range(1,N+1):
    print(greedy(N,K))
"""

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