結果

問題 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  
実行時間 316 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,540 KB
最終ジャッジ日時 2024-07-22 14:58:35
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
29,292 KB
testcase_01 AC 247 ms
27,376 KB
testcase_02 AC 93 ms
15,304 KB
testcase_03 AC 181 ms
22,504 KB
testcase_04 AC 237 ms
26,720 KB
testcase_05 AC 179 ms
22,644 KB
testcase_06 AC 196 ms
24,092 KB
testcase_07 AC 61 ms
13,052 KB
testcase_08 AC 96 ms
15,652 KB
testcase_09 AC 243 ms
28,136 KB
testcase_10 AC 183 ms
23,012 KB
testcase_11 AC 125 ms
17,956 KB
testcase_12 AC 75 ms
13,980 KB
testcase_13 AC 316 ms
32,540 KB
testcase_14 AC 104 ms
16,448 KB
testcase_15 AC 189 ms
22,672 KB
testcase_16 AC 63 ms
13,188 KB
testcase_17 AC 95 ms
15,588 KB
testcase_18 AC 87 ms
15,088 KB
testcase_19 AC 98 ms
16,324 KB
testcase_20 AC 29 ms
10,496 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 29 ms
10,496 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