結果

問題 No.2486 Don't come next to me
ユーザー rlangevinrlangevin
提出日時 2023-09-29 21:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 111,112 KB
最終ジャッジ日時 2024-07-22 15:05:35
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
100,760 KB
testcase_01 AC 129 ms
96,384 KB
testcase_02 AC 90 ms
82,176 KB
testcase_03 AC 115 ms
95,488 KB
testcase_04 AC 128 ms
97,664 KB
testcase_05 AC 112 ms
95,104 KB
testcase_06 AC 118 ms
97,664 KB
testcase_07 AC 87 ms
77,312 KB
testcase_08 AC 91 ms
82,816 KB
testcase_09 AC 131 ms
97,792 KB
testcase_10 AC 114 ms
95,104 KB
testcase_11 AC 100 ms
86,784 KB
testcase_12 AC 84 ms
79,232 KB
testcase_13 AC 150 ms
111,112 KB
testcase_14 AC 98 ms
84,224 KB
testcase_15 AC 113 ms
94,848 KB
testcase_16 AC 86 ms
78,208 KB
testcase_17 AC 95 ms
82,560 KB
testcase_18 AC 91 ms
81,920 KB
testcase_19 AC 95 ms
83,200 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 40 ms
51,456 KB
testcase_22 AC 40 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(M - 1):
    ans += f(A[i + 1] - A[i] - 1)
print(N - M - ans)
0