結果

問題 No.2486 Don't come next to me
ユーザー titiatitia
提出日時 2023-09-29 21:35:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,908 KB
最終ジャッジ日時 2024-07-22 15:36:15
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 401 ms
34,592 KB
testcase_01 AC 366 ms
32,412 KB
testcase_02 AC 128 ms
16,820 KB
testcase_03 AC 274 ms
26,068 KB
testcase_04 AC 355 ms
31,380 KB
testcase_05 AC 265 ms
27,152 KB
testcase_06 AC 290 ms
29,140 KB
testcase_07 AC 79 ms
13,580 KB
testcase_08 AC 136 ms
17,364 KB
testcase_09 AC 373 ms
34,324 KB
testcase_10 AC 277 ms
27,512 KB
testcase_11 AC 175 ms
20,900 KB
testcase_12 AC 99 ms
15,148 KB
testcase_13 AC 468 ms
38,908 KB
testcase_14 AC 147 ms
18,208 KB
testcase_15 AC 277 ms
26,336 KB
testcase_16 AC 84 ms
13,972 KB
testcase_17 AC 137 ms
17,312 KB
testcase_18 AC 120 ms
16,488 KB
testcase_19 AC 142 ms
17,708 KB
testcase_20 AC 33 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))


LIST=[]
for i in range(1,len(A)):
    LIST.append((A[i]-A[i-1]-1,1))

ANS=M

while LIST:
    if LIST[-1][0]<=1:
        LIST.pop()
    elif LIST[-1][0]%2==0:
        LIST.pop()
    else:
        k=LIST[-1][0]
        ko=LIST[-1][1]
        
        ANS+=1*ko
        LIST.pop()

        l=k//2
        LIST.append((l,ko*2))

print(N-ANS)
0