結果

問題 No.2486 Don't come next to me
ユーザー tentententen
提出日時 2024-04-03 14:46:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,645 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 78,628 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-09-30 23:58:41
合計ジャッジ時間 8,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
53,200 KB
testcase_01 AC 252 ms
52,940 KB
testcase_02 AC 194 ms
44,916 KB
testcase_03 AC 237 ms
50,308 KB
testcase_04 AC 252 ms
52,948 KB
testcase_05 AC 245 ms
50,288 KB
testcase_06 AC 244 ms
52,692 KB
testcase_07 AC 163 ms
42,792 KB
testcase_08 AC 193 ms
44,964 KB
testcase_09 AC 254 ms
53,008 KB
testcase_10 AC 250 ms
52,156 KB
testcase_11 AC 200 ms
45,836 KB
testcase_12 AC 179 ms
44,516 KB
testcase_13 AC 270 ms
54,200 KB
testcase_14 AC 203 ms
45,212 KB
testcase_15 AC 247 ms
50,344 KB
testcase_16 AC 190 ms
43,248 KB
testcase_17 AC 173 ms
44,424 KB
testcase_18 AC 163 ms
44,160 KB
testcase_19 AC 175 ms
44,620 KB
testcase_20 AC 45 ms
36,984 KB
testcase_21 AC 44 ms
36,948 KB
testcase_22 AC 45 ms
36,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static Map<Long, Long> dp = new HashMap<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        int m = sc.nextInt();
        dp.put(1L, 1L);
        long prev = sc.nextLong();
        long ans = 0;
        for (int i = 1; i < m; i++) {
            long x = sc.nextLong();
            ans += dfw(x - prev - 1);
            prev = x;
        }
        System.out.println(ans);
    }
    
    static long dfw(long x) {
        if (x == 1) {
            return 1;
        } else if (x % 2 == 0) {
            return x;
        } else {
            return dfw(x / 2) * 2;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0