結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-07-09 13:12:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 3,234 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 86,044 KB
実行使用メモリ 57,328 KB
最終ジャッジ日時 2024-04-16 06:15:45
合計ジャッジ時間 11,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
38,404 KB
testcase_01 AC 81 ms
38,232 KB
testcase_02 AC 329 ms
51,220 KB
testcase_03 AC 159 ms
42,224 KB
testcase_04 AC 361 ms
52,172 KB
testcase_05 AC 134 ms
40,648 KB
testcase_06 AC 395 ms
56,704 KB
testcase_07 AC 295 ms
50,096 KB
testcase_08 AC 408 ms
56,948 KB
testcase_09 AC 301 ms
50,628 KB
testcase_10 AC 318 ms
50,928 KB
testcase_11 AC 397 ms
57,328 KB
testcase_12 AC 303 ms
50,432 KB
testcase_13 AC 302 ms
50,420 KB
testcase_14 AC 367 ms
53,900 KB
testcase_15 AC 354 ms
52,212 KB
testcase_16 AC 246 ms
45,636 KB
testcase_17 AC 115 ms
40,348 KB
testcase_18 AC 246 ms
45,240 KB
testcase_19 AC 284 ms
49,988 KB
testcase_20 AC 274 ms
46,788 KB
testcase_21 AC 303 ms
50,448 KB
testcase_22 AC 83 ms
38,208 KB
testcase_23 AC 79 ms
37,900 KB
testcase_24 AC 416 ms
56,752 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