結果

問題 No.365 ジェンガソート
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 18:25:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 59,720 KB
最終ジャッジ日時 2024-11-26 02:26:11
合計ジャッジ時間 16,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,296 KB
testcase_01 AC 118 ms
54,136 KB
testcase_02 AC 112 ms
54,152 KB
testcase_03 AC 117 ms
53,952 KB
testcase_04 AC 118 ms
53,760 KB
testcase_05 AC 121 ms
54,072 KB
testcase_06 AC 111 ms
53,876 KB
testcase_07 AC 121 ms
53,740 KB
testcase_08 AC 117 ms
53,944 KB
testcase_09 AC 112 ms
53,864 KB
testcase_10 AC 117 ms
53,852 KB
testcase_11 AC 106 ms
52,904 KB
testcase_12 AC 106 ms
52,724 KB
testcase_13 AC 118 ms
53,752 KB
testcase_14 AC 122 ms
54,100 KB
testcase_15 AC 120 ms
53,928 KB
testcase_16 AC 486 ms
59,320 KB
testcase_17 AC 517 ms
59,080 KB
testcase_18 AC 221 ms
58,020 KB
testcase_19 AC 507 ms
59,684 KB
testcase_20 AC 324 ms
58,552 KB
testcase_21 AC 318 ms
59,140 KB
testcase_22 AC 493 ms
59,188 KB
testcase_23 AC 392 ms
59,132 KB
testcase_24 AC 474 ms
58,960 KB
testcase_25 AC 279 ms
58,848 KB
testcase_26 AC 447 ms
58,908 KB
testcase_27 AC 532 ms
58,848 KB
testcase_28 AC 438 ms
59,348 KB
testcase_29 AC 599 ms
59,012 KB
testcase_30 AC 523 ms
59,236 KB
testcase_31 AC 336 ms
59,028 KB
testcase_32 AC 297 ms
57,928 KB
testcase_33 AC 543 ms
59,520 KB
testcase_34 AC 272 ms
58,456 KB
testcase_35 AC 405 ms
57,928 KB
testcase_36 AC 449 ms
58,796 KB
testcase_37 AC 465 ms
59,120 KB
testcase_38 AC 523 ms
59,308 KB
testcase_39 AC 527 ms
59,720 KB
testcase_40 AC 434 ms
59,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] a = new int [N];
        int [] b = new int [N];
        for(int i=0; i<N; i++){
            a[i] = sc.nextInt();
        }
        int r=N;
        int t=N-1;
        for(int i=t; i>=0; i--){
            if(a[i]==r){
                r--;
                t--;
                continue;
            }
        }
        System.out.println(r);
    }
}
0