結果

問題 No.365 ジェンガソート
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 18:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 49,388 KB
最終ジャッジ日時 2024-05-04 14:24:09
合計ジャッジ時間 15,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,208 KB
testcase_01 AC 107 ms
41,836 KB
testcase_02 AC 108 ms
41,468 KB
testcase_03 AC 108 ms
41,608 KB
testcase_04 AC 107 ms
41,744 KB
testcase_05 AC 108 ms
41,588 KB
testcase_06 AC 106 ms
41,708 KB
testcase_07 AC 105 ms
41,496 KB
testcase_08 AC 110 ms
41,520 KB
testcase_09 AC 100 ms
41,740 KB
testcase_10 AC 106 ms
41,664 KB
testcase_11 AC 118 ms
41,628 KB
testcase_12 AC 111 ms
41,852 KB
testcase_13 AC 113 ms
41,460 KB
testcase_14 AC 106 ms
41,316 KB
testcase_15 AC 120 ms
41,580 KB
testcase_16 AC 476 ms
48,920 KB
testcase_17 AC 467 ms
49,044 KB
testcase_18 AC 210 ms
47,036 KB
testcase_19 AC 484 ms
49,324 KB
testcase_20 AC 315 ms
48,000 KB
testcase_21 AC 279 ms
48,212 KB
testcase_22 AC 465 ms
48,652 KB
testcase_23 AC 408 ms
48,280 KB
testcase_24 AC 472 ms
48,896 KB
testcase_25 AC 294 ms
48,136 KB
testcase_26 AC 431 ms
48,504 KB
testcase_27 AC 492 ms
48,740 KB
testcase_28 AC 433 ms
48,744 KB
testcase_29 AC 483 ms
48,796 KB
testcase_30 AC 431 ms
48,532 KB
testcase_31 AC 303 ms
48,232 KB
testcase_32 AC 283 ms
48,120 KB
testcase_33 AC 470 ms
49,076 KB
testcase_34 AC 254 ms
47,848 KB
testcase_35 AC 480 ms
48,736 KB
testcase_36 AC 439 ms
48,444 KB
testcase_37 AC 442 ms
48,756 KB
testcase_38 AC 511 ms
49,132 KB
testcase_39 AC 478 ms
49,388 KB
testcase_40 AC 480 ms
48,984 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