結果
問題 | No.2486 Don't come next to me |
ユーザー |
|
提出日時 | 2023-09-29 22:00:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 131 ms / 2,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 363 ms |
コンパイル使用メモリ | 82,100 KB |
実行使用メモリ | 111,244 KB |
最終ジャッジ日時 | 2024-07-22 15:59:40 |
合計ジャッジ時間 | 3,621 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
def cnt(x):if x == 1 or x % 2 == 0:return xreturn 2*cnt(x//2)N, M = map(int, input().split())A = list(map(int, input().split()))ans = 0for i in range(M-1):ans += cnt(A[i+1]-A[i]-1)print(ans)