結果

問題 No.2486 Don't come next to me
ユーザー prin_kemkemprin_kemkem
提出日時 2023-09-29 21:39:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 114,072 KB
最終ジャッジ日時 2024-07-22 15:40:39
合計ジャッジ時間 5,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
114,064 KB
testcase_01 AC 173 ms
110,688 KB
testcase_02 AC 140 ms
87,840 KB
testcase_03 AC 167 ms
101,308 KB
testcase_04 AC 172 ms
110,124 KB
testcase_05 AC 159 ms
101,408 KB
testcase_06 AC 168 ms
104,184 KB
testcase_07 AC 137 ms
83,924 KB
testcase_08 AC 137 ms
88,684 KB
testcase_09 AC 175 ms
110,060 KB
testcase_10 AC 170 ms
101,496 KB
testcase_11 AC 146 ms
92,684 KB
testcase_12 AC 129 ms
85,156 KB
testcase_13 AC 201 ms
114,072 KB
testcase_14 AC 152 ms
90,668 KB
testcase_15 AC 166 ms
101,368 KB
testcase_16 AC 138 ms
84,516 KB
testcase_17 AC 148 ms
89,088 KB
testcase_18 AC 141 ms
88,048 KB
testcase_19 AC 146 ms
89,544 KB
testcase_20 AC 99 ms
80,760 KB
testcase_21 AC 99 ms
80,600 KB
testcase_22 AC 100 ms
80,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint
import sys
# sys.setrecursionlimit(700000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

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

memo = {}
def f(n):
    if n <= 1:
        return n
    if n%2 == 0:
        return n
    if n in memo:
        return memo[n]
    return 2*f((n-1)//2)

N, M = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for i in range(M-1):
    ans += f(A[i+1]-A[i]-1)
print(ans)
0