結果

問題 No.365 ジェンガソート
ユーザー atkrymatkrym
提出日時 2016-11-08 00:40:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 75,168 KB
実行使用メモリ 48,716 KB
最終ジャッジ日時 2024-05-03 23:04:33
合計ジャッジ時間 18,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,632 KB
testcase_01 AC 134 ms
41,388 KB
testcase_02 AC 134 ms
40,960 KB
testcase_03 AC 133 ms
41,248 KB
testcase_04 AC 136 ms
41,156 KB
testcase_05 AC 134 ms
41,100 KB
testcase_06 AC 133 ms
41,296 KB
testcase_07 AC 125 ms
39,928 KB
testcase_08 AC 135 ms
41,056 KB
testcase_09 AC 136 ms
41,136 KB
testcase_10 AC 133 ms
41,128 KB
testcase_11 AC 135 ms
41,288 KB
testcase_12 AC 137 ms
41,304 KB
testcase_13 AC 142 ms
41,568 KB
testcase_14 AC 134 ms
40,768 KB
testcase_15 AC 143 ms
40,972 KB
testcase_16 AC 588 ms
48,236 KB
testcase_17 AC 624 ms
48,452 KB
testcase_18 AC 263 ms
47,016 KB
testcase_19 AC 614 ms
48,656 KB
testcase_20 AC 371 ms
47,428 KB
testcase_21 AC 368 ms
47,952 KB
testcase_22 AC 597 ms
48,204 KB
testcase_23 AC 462 ms
47,888 KB
testcase_24 AC 587 ms
48,308 KB
testcase_25 AC 351 ms
47,376 KB
testcase_26 AC 524 ms
48,124 KB
testcase_27 AC 649 ms
48,492 KB
testcase_28 AC 531 ms
48,212 KB
testcase_29 AC 605 ms
48,272 KB
testcase_30 AC 526 ms
47,956 KB
testcase_31 AC 380 ms
47,768 KB
testcase_32 AC 357 ms
47,880 KB
testcase_33 AC 648 ms
48,552 KB
testcase_34 AC 311 ms
47,392 KB
testcase_35 AC 564 ms
48,316 KB
testcase_36 AC 539 ms
48,036 KB
testcase_37 AC 539 ms
47,788 KB
testcase_38 AC 595 ms
48,552 KB
testcase_39 AC 598 ms
48,716 KB
testcase_40 AC 630 ms
48,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int[] ary = new int[n+1];
        for (int i = 1;i <= n;i++) {
            ary[i] = sc.nextInt();
        }
        int ret = 0;
        int max = n;
        for (int i = n;i > 0;i--) {
            if (ary[i]==max) {
                ret++;
                max--;
            }
        }
        System.out.println(n-ret);
    }
}
0