結果

問題 No.1748 Parking Lot
ユーザー 👑 KazunKazun
提出日時 2021-11-19 21:34:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 53,648 KB
最終ジャッジ日時 2024-06-10 08:04:20
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,984 KB
testcase_01 AC 36 ms
53,148 KB
testcase_02 AC 37 ms
53,040 KB
testcase_03 AC 38 ms
53,472 KB
testcase_04 AC 37 ms
52,336 KB
testcase_05 AC 37 ms
52,748 KB
testcase_06 AC 37 ms
52,772 KB
testcase_07 AC 38 ms
51,620 KB
testcase_08 AC 36 ms
52,700 KB
testcase_09 AC 37 ms
53,396 KB
testcase_10 AC 37 ms
51,744 KB
testcase_11 AC 38 ms
52,616 KB
testcase_12 AC 37 ms
52,892 KB
testcase_13 AC 37 ms
53,648 KB
testcase_14 AC 38 ms
52,084 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 37 ms
52,488 KB
testcase_17 AC 36 ms
52,152 KB
testcase_18 AC 38 ms
52,424 KB
testcase_19 AC 38 ms
52,188 KB
testcase_20 AC 38 ms
52,952 KB
testcase_21 AC 38 ms
52,736 KB
testcase_22 AC 38 ms
53,560 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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))
"""

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