結果

問題 No.2486 Don't come next to me
ユーザー なえしらなえしら
提出日時 2024-04-14 22:21:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 111,364 KB
最終ジャッジ日時 2024-10-04 02:23:57
合計ジャッジ時間 4,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
101,272 KB
testcase_01 AC 121 ms
96,640 KB
testcase_02 AC 81 ms
81,920 KB
testcase_03 AC 107 ms
95,488 KB
testcase_04 AC 117 ms
97,408 KB
testcase_05 AC 101 ms
95,360 KB
testcase_06 AC 106 ms
97,536 KB
testcase_07 AC 76 ms
77,440 KB
testcase_08 AC 79 ms
83,456 KB
testcase_09 AC 121 ms
98,260 KB
testcase_10 AC 106 ms
95,488 KB
testcase_11 AC 90 ms
87,040 KB
testcase_12 AC 73 ms
79,744 KB
testcase_13 AC 141 ms
111,364 KB
testcase_14 AC 89 ms
83,968 KB
testcase_15 AC 104 ms
95,488 KB
testcase_16 AC 76 ms
78,204 KB
testcase_17 AC 83 ms
82,816 KB
testcase_18 AC 83 ms
81,948 KB
testcase_19 AC 86 ms
83,200 KB
testcase_20 AC 39 ms
51,456 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def soln(L):
  if L%2 == 0: return L
  if L == 1: return 1
  return 2*soln((L-1)//2)

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

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

print(ans)
0