結果
問題 | No.1090 ソーシャルディスタンス / Social Distance |
ユーザー | neko_the_shadow |
提出日時 | 2020-07-09 12:44:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,133 bytes |
コンパイル時間 | 2,717 ms |
コンパイル使用メモリ | 85,520 KB |
実行使用メモリ | 58,012 KB |
最終ジャッジ日時 | 2024-10-06 16:56:03 |
合計ジャッジ時間 | 11,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 75 ms
37,944 KB |
testcase_02 | AC | 331 ms
52,092 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 140 ms
41,468 KB |
testcase_06 | WA | - |
testcase_07 | AC | 288 ms
50,672 KB |
testcase_08 | WA | - |
testcase_09 | AC | 295 ms
50,452 KB |
testcase_10 | AC | 324 ms
51,056 KB |
testcase_11 | WA | - |
testcase_12 | AC | 292 ms
50,388 KB |
testcase_13 | WA | - |
testcase_14 | AC | 391 ms
57,156 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 111 ms
39,772 KB |
testcase_18 | WA | - |
testcase_19 | AC | 286 ms
50,536 KB |
testcase_20 | AC | 269 ms
47,880 KB |
testcase_21 | AC | 299 ms
50,744 KB |
testcase_22 | AC | 73 ms
37,828 KB |
testcase_23 | WA | - |
testcase_24 | AC | 410 ms
57,536 KB |
ソースコード
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(); } } }