結果

問題 No.2486 Don't come next to me
ユーザー tassei903tassei903
提出日時 2023-09-29 21:07:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 111,468 KB
最終ジャッジ日時 2024-07-22 15:03:23
合計ジャッジ時間 3,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
101,480 KB
testcase_01 AC 126 ms
98,340 KB
testcase_02 AC 86 ms
82,176 KB
testcase_03 AC 112 ms
95,484 KB
testcase_04 AC 122 ms
97,964 KB
testcase_05 AC 107 ms
95,360 KB
testcase_06 AC 113 ms
97,780 KB
testcase_07 AC 82 ms
77,580 KB
testcase_08 AC 85 ms
83,036 KB
testcase_09 AC 125 ms
96,424 KB
testcase_10 AC 113 ms
95,744 KB
testcase_11 AC 95 ms
87,296 KB
testcase_12 AC 77 ms
79,588 KB
testcase_13 AC 146 ms
111,468 KB
testcase_14 AC 94 ms
84,224 KB
testcase_15 AC 111 ms
95,500 KB
testcase_16 AC 81 ms
78,720 KB
testcase_17 AC 92 ms
83,004 KB
testcase_18 AC 86 ms
81,792 KB
testcase_19 AC 92 ms
83,340 KB
testcase_20 AC 41 ms
51,840 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 40 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

def f(x):
    if x == 0:
        return 0
    if x == 1:
        return 1
    if x % 2 == 0:
        return x
    return f((x-1)//2) * 2

n, m = na()
a = na()
ans = 0
for i in range(m-1):
    ans += f(a[i+1] - a[i] - 1)

print(ans)
0