結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-07-09 12:44:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,133 bytes
コンパイル時間 3,072 ms
コンパイル使用メモリ 85,624 KB
実行使用メモリ 58,020 KB
最終ジャッジ日時 2024-04-16 04:55:10
合計ジャッジ時間 11,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 75 ms
38,012 KB
testcase_02 AC 335 ms
52,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 145 ms
41,568 KB
testcase_06 WA -
testcase_07 AC 290 ms
50,824 KB
testcase_08 WA -
testcase_09 AC 293 ms
50,568 KB
testcase_10 AC 326 ms
51,356 KB
testcase_11 WA -
testcase_12 AC 301 ms
50,708 KB
testcase_13 WA -
testcase_14 AC 400 ms
57,204 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 110 ms
40,064 KB
testcase_18 WA -
testcase_19 AC 281 ms
50,664 KB
testcase_20 AC 273 ms
48,128 KB
testcase_21 AC 301 ms
50,768 KB
testcase_22 AC 76 ms
38,024 KB
testcase_23 WA -
testcase_24 AC 436 ms
57,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        Deque<Integer> ans = new ArrayDeque<>();
        ans.addLast(0);

        for (int i = 0; i < n - 1; i++) {
            int a = stdin.nextInt();
            int b = ans.peekLast();
            if (b <= a && b + d <= a) {
                ans.addLast(a);
            } else {
                ans.addLast(b+d);
            }
        }

        stdout.println(ans.stream().map(Objects::toString).collect(Collectors.joining(" ")));
    }

    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