結果

問題 No.2486 Don't come next to me
ユーザー miya145592miya145592
提出日時 2023-09-29 22:26:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,120 KB
最終ジャッジ日時 2024-07-22 16:27:04
合計ジャッジ時間 3,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
100,836 KB
testcase_01 AC 111 ms
94,780 KB
testcase_02 AC 72 ms
75,136 KB
testcase_03 AC 89 ms
92,160 KB
testcase_04 AC 110 ms
95,360 KB
testcase_05 AC 96 ms
93,440 KB
testcase_06 AC 97 ms
95,744 KB
testcase_07 AC 59 ms
67,328 KB
testcase_08 AC 69 ms
74,752 KB
testcase_09 AC 114 ms
95,232 KB
testcase_10 AC 95 ms
93,568 KB
testcase_11 AC 81 ms
82,432 KB
testcase_12 AC 66 ms
70,272 KB
testcase_13 AC 127 ms
106,120 KB
testcase_14 AC 68 ms
77,184 KB
testcase_15 AC 84 ms
93,568 KB
testcase_16 AC 60 ms
67,456 KB
testcase_17 AC 69 ms
74,624 KB
testcase_18 AC 69 ms
74,240 KB
testcase_19 AC 70 ms
75,264 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for i in range(M-1):
    gap = A[i+1]-A[i]
    cnt = 1
    while True:
        if gap==2:
            ans += cnt
            break
        elif gap%2!=0:
            ans += (gap-1)*cnt
            break
        else:
            gap//=2
            cnt*=2
    
print(ans)
0