結果

問題 No.2486 Don't come next to me
ユーザー square1001square1001
提出日時 2023-09-29 21:03:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 32,892 KB
最終ジャッジ日時 2023-09-29 21:03:38
合計ジャッジ時間 4,410 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
31,000 KB
testcase_01 AC 201 ms
28,956 KB
testcase_02 AC 69 ms
13,480 KB
testcase_03 AC 144 ms
21,732 KB
testcase_04 AC 195 ms
26,328 KB
testcase_05 AC 149 ms
22,848 KB
testcase_06 AC 161 ms
24,596 KB
testcase_07 AC 41 ms
10,724 KB
testcase_08 AC 72 ms
13,996 KB
testcase_09 AC 211 ms
29,092 KB
testcase_10 AC 150 ms
23,196 KB
testcase_11 AC 96 ms
16,664 KB
testcase_12 AC 52 ms
11,816 KB
testcase_13 AC 263 ms
32,892 KB
testcase_14 AC 81 ms
14,616 KB
testcase_15 AC 151 ms
21,956 KB
testcase_16 AC 43 ms
10,828 KB
testcase_17 AC 71 ms
13,680 KB
testcase_18 AC 64 ms
13,152 KB
testcase_19 AC 76 ms
14,224 KB
testcase_20 AC 15 ms
7,804 KB
testcase_21 AC 14 ms
7,844 KB
testcase_22 AC 13 ms
7,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for i in range(1, m):
	d = a[i] - a[i - 1]
	x = d
	p = 1
	while x >= 4 and x % 2 == 0:
		x //= 2
		p *= 2
	ans += d - p
print(ans)
0