結果

問題 No.365 ジェンガソート
ユーザー atkrymatkrym
提出日時 2016-11-08 00:40:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 59,708 KB
最終ジャッジ日時 2024-11-25 04:34:08
合計ジャッジ時間 15,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,312 KB
testcase_01 AC 129 ms
53,948 KB
testcase_02 AC 126 ms
53,808 KB
testcase_03 AC 124 ms
53,852 KB
testcase_04 AC 124 ms
53,884 KB
testcase_05 AC 115 ms
54,080 KB
testcase_06 AC 110 ms
52,980 KB
testcase_07 AC 116 ms
54,156 KB
testcase_08 AC 116 ms
53,988 KB
testcase_09 AC 105 ms
53,000 KB
testcase_10 AC 117 ms
54,000 KB
testcase_11 AC 120 ms
54,076 KB
testcase_12 AC 123 ms
53,936 KB
testcase_13 AC 113 ms
52,736 KB
testcase_14 AC 110 ms
53,172 KB
testcase_15 AC 123 ms
53,896 KB
testcase_16 AC 499 ms
59,376 KB
testcase_17 AC 541 ms
59,376 KB
testcase_18 AC 236 ms
57,700 KB
testcase_19 AC 453 ms
59,304 KB
testcase_20 AC 327 ms
58,808 KB
testcase_21 AC 325 ms
58,876 KB
testcase_22 AC 515 ms
59,256 KB
testcase_23 AC 403 ms
59,152 KB
testcase_24 AC 454 ms
59,468 KB
testcase_25 AC 318 ms
58,712 KB
testcase_26 AC 506 ms
59,120 KB
testcase_27 AC 506 ms
59,248 KB
testcase_28 AC 442 ms
59,180 KB
testcase_29 AC 559 ms
59,188 KB
testcase_30 AC 461 ms
59,352 KB
testcase_31 AC 319 ms
58,976 KB
testcase_32 AC 291 ms
57,976 KB
testcase_33 AC 522 ms
59,300 KB
testcase_34 AC 258 ms
57,872 KB
testcase_35 AC 492 ms
59,256 KB
testcase_36 AC 464 ms
59,440 KB
testcase_37 AC 453 ms
58,120 KB
testcase_38 AC 501 ms
59,264 KB
testcase_39 AC 499 ms
59,708 KB
testcase_40 AC 582 ms
59,228 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