結果

問題 No.2486 Don't come next to me
ユーザー mymelochanmymelochan
提出日時 2023-09-29 23:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,344 KB
最終ジャッジ日時 2024-07-22 17:20:30
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
102,592 KB
testcase_01 AC 101 ms
98,976 KB
testcase_02 AC 69 ms
77,056 KB
testcase_03 AC 91 ms
91,008 KB
testcase_04 AC 101 ms
99,208 KB
testcase_05 AC 87 ms
91,136 KB
testcase_06 AC 91 ms
91,848 KB
testcase_07 AC 59 ms
69,248 KB
testcase_08 AC 73 ms
77,056 KB
testcase_09 AC 99 ms
99,380 KB
testcase_10 AC 91 ms
91,648 KB
testcase_11 AC 75 ms
83,968 KB
testcase_12 AC 65 ms
72,704 KB
testcase_13 AC 120 ms
107,344 KB
testcase_14 AC 73 ms
79,104 KB
testcase_15 AC 88 ms
91,264 KB
testcase_16 AC 58 ms
70,016 KB
testcase_17 AC 66 ms
77,056 KB
testcase_18 AC 66 ms
76,032 KB
testcase_19 AC 70 ms
77,696 KB
testcase_20 AC 41 ms
54,144 KB
testcase_21 AC 40 ms
54,016 KB
testcase_22 AC 41 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

#############################################################

N,M = lmin()
A = lmin()

ans = 0
for i in range(M-1):
    v = A[i+1]-A[i]-1
    ans += v
    t = 1
    while v%2 and v>=3:
        ans -= t
        v //= 2
        t <<= 1

print(ans)
0