結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-07-09 13:12:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 3,234 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 85,088 KB
実行使用メモリ 66,836 KB
最終ジャッジ日時 2024-10-06 19:21:08
合計ジャッジ時間 10,464 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
50,964 KB
testcase_01 AC 75 ms
51,380 KB
testcase_02 AC 297 ms
62,348 KB
testcase_03 AC 137 ms
56,036 KB
testcase_04 AC 286 ms
62,384 KB
testcase_05 AC 115 ms
52,704 KB
testcase_06 AC 347 ms
66,316 KB
testcase_07 AC 250 ms
61,476 KB
testcase_08 AC 354 ms
66,684 KB
testcase_09 AC 261 ms
61,256 KB
testcase_10 AC 295 ms
62,236 KB
testcase_11 AC 369 ms
66,836 KB
testcase_12 AC 282 ms
61,644 KB
testcase_13 AC 286 ms
61,420 KB
testcase_14 AC 348 ms
64,024 KB
testcase_15 AC 289 ms
62,128 KB
testcase_16 AC 206 ms
57,256 KB
testcase_17 AC 105 ms
52,524 KB
testcase_18 AC 212 ms
57,904 KB
testcase_19 AC 237 ms
61,348 KB
testcase_20 AC 231 ms
56,864 KB
testcase_21 AC 278 ms
61,740 KB
testcase_22 AC 75 ms
50,948 KB
testcase_23 AC 73 ms
51,032 KB
testcase_24 AC 362 ms
66,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _1090;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.UncheckedIOException;
import java.lang.reflect.Array;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Deque;
import java.util.Objects;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

public class Main {
    public void exec() {
        int n = stdin.nextInt();
        int d = stdin.nextInt();
        int[] a = new int[n-1];
        for (int i = 0; i < n - 1; i++) {
            a[i] = stdin.nextInt();
        }

        int[] b = new int[n];
        for (int i = 0; i < n - 1; i++) {
            b[i+1] = b[i] + a[i];
        }
        for (int i = 1; i < n; i++) {
            if (b[i-1] > b[i] || b[i] - b[i-1] < d) {
                b[i] = b[i-1] + d;
            }
        }

        String line = Arrays.stream(b).mapToObj(Objects::toString).collect(Collectors.joining(" "));
        stdout.println(line);
    }

    private static final Stdin stdin = new Stdin();
    private static final Stdout stdout = new Stdout();

    public static void main(String[] args) {
        new Main().exec();
        stdout.flush();
    }

    public static class Stdin {
        private BufferedReader stdin;
        private Deque<String> tokens;
        private Pattern delim;

        public Stdin() {
            stdin = new BufferedReader(new InputStreamReader(System.in));
            tokens = new ArrayDeque<>();
            delim = Pattern.compile(" ");
        }

        public String nextString() {
            try {
                if (tokens.isEmpty()) {
                    String line = stdin.readLine();
                    delim.splitAsStream(line).forEach(tokens::addLast);
                }
                return tokens.pollFirst();
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }

        public int nextInt() {
            return Integer.parseInt(nextString());
        }

        public double nextDouble() {
            return Double.parseDouble(nextString());
        }

        public long nextLong() {
            return Long.parseLong(nextString());
        }
    }

    public static class Stdout {
        private PrintWriter stdout;

        public Stdout() {
            stdout =  new PrintWriter(System.out, false);
        }

        public void printf(String format, Object ... args) {
            stdout.printf(format, args);
        }

        public void println(Object ... objs) {
            String line = Arrays.stream(objs).map(this::deepToString).collect(Collectors.joining(" "));
            stdout.println(line);
        }

        private String deepToString(Object o) {
            if (o == null || !o.getClass().isArray()) {
                return Objects.toString(o);
            }

            int len = Array.getLength(o);
            String[] tokens = new String[len];
            for (int i = 0; i < len; i++) {
                tokens[i] = deepToString(Array.get(o, i));
            }
            return "{" + String.join(",", tokens) + "}";
        }

        public void flush() {
            stdout.flush();
        }
    }
}
0