結果

問題 No.2486 Don't come next to me
ユーザー tentententen
提出日時 2024-04-03 14:42:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,738 bytes
コンパイル時間 4,605 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-04-03 14:42:16
合計ジャッジ時間 6,697 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 54 ms
53,992 KB
testcase_21 AC 54 ms
53,980 KB
testcase_22 AC 55 ms
53,968 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();
        int n = sc.nextInt();
        int m = sc.nextInt();
        dp.put(0L, 0L);
        dp.put(1L, 1L);
        dp.put(2L, 2L);
        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 (!dp.containsKey(x)) {
            if (x % 2 == 0) {
                dp.put(x, x);
            } else {
                dp.put(x, dfw(x / 2) * 2);
            }
        }
        return dp.get(x);
    }
}
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