結果
問題 | No.365 ジェンガソート |
ユーザー | Grenache |
提出日時 | 2016-04-29 22:26:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 215 ms / 2,000 ms |
コード長 | 1,618 bytes |
コンパイル時間 | 3,906 ms |
コンパイル使用メモリ | 78,436 KB |
実行使用メモリ | 60,624 KB |
最終ジャッジ日時 | 2024-10-12 01:37:36 |
合計ジャッジ時間 | 10,732 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,024 KB |
testcase_01 | AC | 54 ms
50,288 KB |
testcase_02 | AC | 53 ms
50,180 KB |
testcase_03 | AC | 51 ms
50,028 KB |
testcase_04 | AC | 52 ms
50,160 KB |
testcase_05 | AC | 54 ms
50,264 KB |
testcase_06 | AC | 54 ms
49,884 KB |
testcase_07 | AC | 54 ms
50,488 KB |
testcase_08 | AC | 55 ms
50,188 KB |
testcase_09 | AC | 55 ms
50,052 KB |
testcase_10 | AC | 53 ms
50,064 KB |
testcase_11 | AC | 53 ms
49,952 KB |
testcase_12 | AC | 54 ms
50,140 KB |
testcase_13 | AC | 52 ms
50,120 KB |
testcase_14 | AC | 53 ms
50,232 KB |
testcase_15 | AC | 54 ms
50,192 KB |
testcase_16 | AC | 181 ms
57,368 KB |
testcase_17 | AC | 206 ms
60,192 KB |
testcase_18 | AC | 97 ms
51,664 KB |
testcase_19 | AC | 212 ms
60,436 KB |
testcase_20 | AC | 117 ms
54,244 KB |
testcase_21 | AC | 122 ms
53,848 KB |
testcase_22 | AC | 193 ms
58,096 KB |
testcase_23 | AC | 143 ms
57,072 KB |
testcase_24 | AC | 172 ms
58,336 KB |
testcase_25 | AC | 118 ms
53,928 KB |
testcase_26 | AC | 156 ms
56,908 KB |
testcase_27 | AC | 215 ms
60,256 KB |
testcase_28 | AC | 169 ms
57,548 KB |
testcase_29 | AC | 195 ms
60,028 KB |
testcase_30 | AC | 160 ms
57,064 KB |
testcase_31 | AC | 125 ms
54,244 KB |
testcase_32 | AC | 125 ms
54,068 KB |
testcase_33 | AC | 212 ms
60,420 KB |
testcase_34 | AC | 101 ms
51,848 KB |
testcase_35 | AC | 183 ms
57,284 KB |
testcase_36 | AC | 214 ms
60,184 KB |
testcase_37 | AC | 209 ms
60,624 KB |
testcase_38 | AC | 210 ms
60,336 KB |
testcase_39 | AC | 206 ms
60,316 KB |
testcase_40 | AC | 210 ms
60,132 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder365 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = sc.nextInt(); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); } int cnt = 0; int x = n; for (int i = n - 1; i >= 0; i--) { if (a[i] == x) { cnt++; x--; } } pr.println(n - cnt); pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }