結果

問題 No.2486 Don't come next to me
ユーザー detteiuudetteiuu
提出日時 2024-12-22 02:18:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,852 KB
最終ジャッジ日時 2024-12-22 02:18:26
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
105,056 KB
testcase_01 AC 106 ms
98,356 KB
testcase_02 AC 66 ms
77,312 KB
testcase_03 AC 90 ms
98,176 KB
testcase_04 AC 106 ms
97,988 KB
testcase_05 AC 89 ms
97,920 KB
testcase_06 AC 94 ms
100,864 KB
testcase_07 AC 59 ms
68,992 KB
testcase_08 AC 65 ms
78,080 KB
testcase_09 AC 114 ms
98,660 KB
testcase_10 AC 90 ms
98,328 KB
testcase_11 AC 72 ms
84,608 KB
testcase_12 AC 59 ms
72,320 KB
testcase_13 AC 120 ms
110,852 KB
testcase_14 AC 66 ms
78,848 KB
testcase_15 AC 91 ms
98,400 KB
testcase_16 AC 56 ms
70,144 KB
testcase_17 AC 66 ms
76,672 KB
testcase_18 AC 63 ms
74,880 KB
testcase_19 AC 66 ms
77,696 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
A = [0]+A+[N+1]
M += 2

ans = 0
for i in range(M-1):
    diff = A[i+1]-A[i]-1
    ans += diff
    if diff%2 == 1:
        cnt = 0
        while diff >= 2 and diff%2 == 1:
            ans -= 2**cnt
            diff //= 2
            cnt += 1

print(ans)
0