結果

問題 No.365 ジェンガソート
ユーザー SagTokiSagToki
提出日時 2018-06-04 16:21:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 1,415 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 80,004 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-06-30 09:42:38
合計ジャッジ時間 20,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,212 KB
testcase_01 AC 131 ms
54,160 KB
testcase_02 AC 129 ms
54,076 KB
testcase_03 AC 128 ms
54,124 KB
testcase_04 AC 128 ms
53,952 KB
testcase_05 AC 129 ms
54,124 KB
testcase_06 AC 129 ms
54,092 KB
testcase_07 AC 126 ms
54,064 KB
testcase_08 AC 131 ms
54,184 KB
testcase_09 AC 134 ms
54,100 KB
testcase_10 AC 115 ms
53,020 KB
testcase_11 AC 116 ms
52,832 KB
testcase_12 AC 134 ms
53,820 KB
testcase_13 AC 135 ms
54,196 KB
testcase_14 AC 129 ms
54,060 KB
testcase_15 AC 138 ms
54,188 KB
testcase_16 AC 568 ms
61,852 KB
testcase_17 AC 528 ms
60,744 KB
testcase_18 AC 256 ms
58,316 KB
testcase_19 AC 627 ms
62,072 KB
testcase_20 AC 374 ms
58,996 KB
testcase_21 AC 374 ms
59,168 KB
testcase_22 AC 601 ms
61,504 KB
testcase_23 AC 437 ms
59,292 KB
testcase_24 AC 533 ms
61,616 KB
testcase_25 AC 342 ms
58,928 KB
testcase_26 AC 546 ms
59,548 KB
testcase_27 AC 647 ms
61,648 KB
testcase_28 AC 516 ms
59,424 KB
testcase_29 AC 612 ms
61,772 KB
testcase_30 AC 558 ms
59,496 KB
testcase_31 AC 396 ms
59,260 KB
testcase_32 AC 363 ms
58,920 KB
testcase_33 AC 656 ms
61,804 KB
testcase_34 AC 313 ms
58,900 KB
testcase_35 AC 589 ms
61,568 KB
testcase_36 AC 554 ms
61,380 KB
testcase_37 AC 557 ms
61,300 KB
testcase_38 AC 628 ms
61,596 KB
testcase_39 AC 604 ms
62,080 KB
testcase_40 AC 626 ms
61,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.InputMismatchException;

public class JengaSort {
    static Scanner scanner = new Scanner(System.in);
    public static void main(String[] args){
        int N = Input(1 , 100000);
        ArrayList<Integer> High = new ArrayList<>();
        for(int i = 0 ; i < N ; i++){
            High.add(Input(1,N));
        }
        int Result = Processing(N,High);
        System.out.println(N - Result);
        
    }
    
    public static int Input(int Min , int Max){
        int Number = scanner.nextInt();
        try{
            if(Number < Min || Number > Max){
                System.out.println(Min + "以上" + Max + "以下で入力してください");
                System.exit(0);
            }
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
            System.exit(0);
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
            System.exit(0);
        }
        return Number;
    }
    
    public static int Processing(int N , ArrayList<Integer> High){
        int Count = 0;
        int Match = N;
        for(int i = N - 1 ; i >= 0 ; i--){
            if(High.get(i) == Match){
                Count++;
                Match--;
            }
        }
        //System.out.println(Count);
        return Count;
    }
}
0