結果

問題 No.2486 Don't come next to me
ユーザー 👑 rin204rin204
提出日時 2024-05-12 13:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 105,672 KB
最終ジャッジ日時 2024-05-12 13:30:52
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
100,980 KB
testcase_01 AC 92 ms
96,484 KB
testcase_02 AC 60 ms
76,440 KB
testcase_03 AC 73 ms
94,040 KB
testcase_04 AC 91 ms
97,836 KB
testcase_05 AC 79 ms
95,576 KB
testcase_06 AC 83 ms
98,296 KB
testcase_07 AC 50 ms
68,188 KB
testcase_08 AC 59 ms
76,528 KB
testcase_09 AC 99 ms
98,180 KB
testcase_10 AC 81 ms
95,692 KB
testcase_11 AC 67 ms
84,144 KB
testcase_12 AC 53 ms
71,660 KB
testcase_13 AC 109 ms
105,672 KB
testcase_14 AC 58 ms
78,552 KB
testcase_15 AC 75 ms
94,428 KB
testcase_16 AC 48 ms
68,864 KB
testcase_17 AC 55 ms
76,572 KB
testcase_18 AC 55 ms
75,860 KB
testcase_19 AC 56 ms
78,092 KB
testcase_20 AC 32 ms
53,696 KB
testcase_21 AC 32 ms
53,368 KB
testcase_22 AC 33 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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