結果

問題 No.365 ジェンガソート
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 23:36:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 1,788 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 45,360 KB
最終ジャッジ日時 2024-05-05 14:25:25
合計ジャッジ時間 9,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,064 KB
testcase_01 AC 55 ms
36,884 KB
testcase_02 AC 54 ms
36,840 KB
testcase_03 AC 54 ms
37,132 KB
testcase_04 AC 52 ms
36,848 KB
testcase_05 AC 52 ms
36,848 KB
testcase_06 AC 51 ms
37,088 KB
testcase_07 AC 54 ms
36,840 KB
testcase_08 AC 52 ms
37,160 KB
testcase_09 AC 52 ms
37,040 KB
testcase_10 AC 52 ms
37,064 KB
testcase_11 AC 52 ms
36,860 KB
testcase_12 AC 52 ms
36,988 KB
testcase_13 AC 53 ms
37,096 KB
testcase_14 AC 55 ms
36,948 KB
testcase_15 AC 54 ms
37,048 KB
testcase_16 AC 197 ms
44,732 KB
testcase_17 AC 190 ms
43,884 KB
testcase_18 AC 104 ms
39,064 KB
testcase_19 AC 216 ms
44,740 KB
testcase_20 AC 131 ms
40,820 KB
testcase_21 AC 123 ms
40,496 KB
testcase_22 AC 170 ms
43,912 KB
testcase_23 AC 156 ms
42,012 KB
testcase_24 AC 176 ms
43,736 KB
testcase_25 AC 125 ms
40,064 KB
testcase_26 AC 182 ms
44,148 KB
testcase_27 AC 220 ms
45,360 KB
testcase_28 AC 179 ms
44,272 KB
testcase_29 AC 185 ms
44,232 KB
testcase_30 AC 175 ms
43,260 KB
testcase_31 AC 126 ms
40,756 KB
testcase_32 AC 130 ms
40,532 KB
testcase_33 AC 189 ms
44,680 KB
testcase_34 AC 111 ms
39,644 KB
testcase_35 AC 171 ms
43,724 KB
testcase_36 AC 189 ms
44,324 KB
testcase_37 AC 194 ms
44,384 KB
testcase_38 AC 196 ms
44,420 KB
testcase_39 AC 195 ms
44,436 KB
testcase_40 AC 191 ms
44,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int[] a = nia(n);

        int now = n;
        for (int i = n - 1; i >= 0; i--) {
            if (a[i] == now) {
                now--;
            }
        }
        
        out.println(now);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0