結果
問題 | No.1285 ゴミ捨て |
ユーザー | neko_the_shadow |
提出日時 | 2020-11-15 17:59:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,201 bytes |
コンパイル時間 | 3,405 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 53,652 KB |
最終ジャッジ日時 | 2024-07-23 01:17:28 |
合計ジャッジ時間 | 6,584 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,608 KB |
testcase_01 | AC | 56 ms
50,476 KB |
testcase_02 | AC | 57 ms
50,492 KB |
testcase_03 | AC | 56 ms
50,468 KB |
testcase_04 | AC | 57 ms
50,504 KB |
testcase_05 | AC | 58 ms
50,472 KB |
testcase_06 | AC | 55 ms
50,492 KB |
testcase_07 | WA | - |
testcase_08 | AC | 62 ms
50,576 KB |
testcase_09 | AC | 117 ms
52,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 97 ms
52,536 KB |
testcase_17 | AC | 94 ms
52,536 KB |
testcase_18 | AC | 92 ms
52,572 KB |
testcase_19 | WA | - |
testcase_20 | AC | 96 ms
52,480 KB |
testcase_21 | AC | 99 ms
52,592 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
package yukicoder._1285; import java.io.IOException; import java.io.InputStream; import java.io.PrintStream; import java.io.PrintWriter; import java.io.UncheckedIOException; import java.lang.reflect.Array; import java.util.Arrays; import java.util.Objects; public class Main { public void exec() { int n = stdin.nextInt(); int[] a = stdin.nextIntArray(n); Arrays.sort(a); int ans = 1; for (int i = 0; i < n - 1; i++) { if (!(a[i]+1 < a[i+1])) { ans++; } } stdout.println(ans); } private static final Stdin stdin = new Stdin(System.in); private static final Stdout stdout = new Stdout(System.out); private static final Stderr stderr = new Stderr(System.err, false); public static void main(String[] args) { try { new Main().exec(); } finally { stdout.flush(); } } // ASCII ONLY public static class Stdin { private InputStream in; private byte[] buf; private int ptr; private int len; public Stdin(InputStream in) { this.in = in; this.buf = new byte[1024]; this.ptr = 0; this.len = 0; } public String nextString() { StringBuilder sb = new StringBuilder(); byte b; while ((b = read()) != -1) { sb.appendCodePoint(b); } return sb.toString(); } public int nextInt() { return (int)nextLong(); } public double nextDouble() { return Double.parseDouble(nextString()); } public long nextLong() { boolean negative = false; int x = 0; byte b = read(); if (b == '-') { negative = true; } else { x += b-'0'; } while ((b=read()) != -1) { x *= 10; x += b-'0'; } return negative ? -x : x; } private byte read() { byte b = readByte(); if (b == '\r') { readByte(); // LFを読み飛ばす return -1; } else if (b == '\n' || b == ' ') { return -1; } else { return b; } } private byte readByte(){ if (len == ptr) { try { ptr = 0; len = in.read(buf); if (len == -1) return -1; } catch (IOException e) { throw new UncheckedIOException(e); } } return buf[ptr++]; } public String[] nextStringArray(int n) { String[] a = new String[n]; for (int i = 0; i < n; i++) a[i] = nextString(); return a; } public int[] nextIntArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public double[] nextDoubleArray(int n) { double[] a = new double[n]; for (int i = 0; i < n; i++) a[i] = nextDouble(); return a; } public long[] nextLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } } public static class Stdout { private PrintWriter stdout; public Stdout(PrintStream stdout) { this.stdout = new PrintWriter(stdout, false); } public void println(Object ... objs) { for (int i = 0, len = objs.length; i < len; i++) { stdout.print(objs[i]); if (i != len-1) stdout.print(' '); } stdout.println(); } public void flush() { stdout.flush(); } } public static class Stderr { private PrintWriter stderr; private boolean debug; public Stderr(PrintStream stderr, boolean debug) { this.stderr = new PrintWriter(stderr, false); this.debug = debug; } public void println(Object ... objs) { if (!debug) return ; stderr.print("DEBUG: "); for (int i = 0, len = objs.length; i < len; i++) { stderr.print(deepToString(objs[i])); if (i != len-1) stderr.print(' '); } stderr.println(); stderr.flush(); } private String deepToString(Object o) { if (o == null) { return "null"; } // 配列の場合 if (o.getClass().isArray()) { 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) + "}"; } return Objects.toString(o); } } }