結果
問題 | No.2486 Don't come next to me |
ユーザー | tenten |
提出日時 | 2024-04-03 14:42:06 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,738 bytes |
コンパイル時間 | 2,290 ms |
コンパイル使用メモリ | 79,684 KB |
実行使用メモリ | 51,968 KB |
最終ジャッジ日時 | 2024-09-30 23:58:15 |
合計ジャッジ時間 | 5,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 52 ms
50,208 KB |
testcase_21 | AC | 52 ms
51,968 KB |
testcase_22 | AC | 53 ms
50,216 KB |
ソースコード
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(); } } }