結果

問題 No.2542 Yokan for Two
ユーザー tentententen
提出日時 2024-04-05 17:54:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 1,882 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 79,636 KB
実行使用メモリ 57,376 KB
最終ジャッジ日時 2024-10-01 01:23:43
合計ジャッジ時間 12,511 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,980 KB
testcase_01 AC 45 ms
37,200 KB
testcase_02 AC 44 ms
37,200 KB
testcase_03 AC 156 ms
47,516 KB
testcase_04 AC 189 ms
47,712 KB
testcase_05 AC 315 ms
55,984 KB
testcase_06 AC 45 ms
37,072 KB
testcase_07 AC 462 ms
57,376 KB
testcase_08 AC 229 ms
53,492 KB
testcase_09 AC 419 ms
56,984 KB
testcase_10 AC 132 ms
44,200 KB
testcase_11 AC 158 ms
45,052 KB
testcase_12 AC 314 ms
55,152 KB
testcase_13 AC 134 ms
44,416 KB
testcase_14 AC 251 ms
55,104 KB
testcase_15 AC 260 ms
54,884 KB
testcase_16 AC 265 ms
55,540 KB
testcase_17 AC 250 ms
55,304 KB
testcase_18 AC 292 ms
56,240 KB
testcase_19 AC 199 ms
48,284 KB
testcase_20 AC 178 ms
45,876 KB
testcase_21 AC 201 ms
47,516 KB
testcase_22 AC 184 ms
47,064 KB
testcase_23 AC 197 ms
47,236 KB
testcase_24 AC 45 ms
36,952 KB
testcase_25 AC 46 ms
36,876 KB
testcase_26 AC 44 ms
37,176 KB
testcase_27 AC 46 ms
37,288 KB
testcase_28 AC 46 ms
36,992 KB
testcase_29 AC 198 ms
54,100 KB
testcase_30 AC 239 ms
54,904 KB
testcase_31 AC 242 ms
54,872 KB
testcase_32 AC 239 ms
55,276 KB
testcase_33 AC 239 ms
55,084 KB
testcase_34 AC 275 ms
55,268 KB
testcase_35 AC 279 ms
55,244 KB
testcase_36 AC 246 ms
55,412 KB
testcase_37 AC 311 ms
55,492 KB
testcase_38 AC 266 ms
55,096 KB
testcase_39 AC 297 ms
55,980 KB
testcase_40 AC 280 ms
55,976 KB
testcase_41 AC 265 ms
55,552 KB
testcase_42 AC 287 ms
55,908 KB
testcase_43 AC 280 ms
55,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int length = sc.nextInt();
        int n = sc.nextInt();
        int[] positions = new int[n];
        for (int i = 0; i < n; i++) {
            positions[i] = sc.nextInt();
        }
        int base = Math.abs(length - positions[n - 1] - positions[0]);
        Set<Integer> current = new HashSet<>();
        current.add(0);
        for (int i = 0; i < n - 1; i++) {
            int x = positions[i + 1] - positions[i];
            Set<Integer> next = new HashSet<>();
            for (int y : current) {
                next.add(x + y);
                next.add(Math.abs(y - x));
            }
            current = next;
        }
        int ans = Integer.MAX_VALUE;
        for (int x : current) {
            ans = Math.min(ans, Math.abs(base - x));
        }
        System.out.println(ans);
    }
}
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