結果

問題 No.365 ジェンガソート
ユーザー SagTokiSagToki
提出日時 2018-06-04 15:17:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,591 bytes
コンパイル時間 10,263 ms
コンパイル使用メモリ 80,752 KB
実行使用メモリ 63,512 KB
最終ジャッジ日時 2024-06-30 09:41:10
合計ジャッジ時間 20,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,136 KB
testcase_01 AC 130 ms
40,960 KB
testcase_02 AC 131 ms
41,480 KB
testcase_03 AC 129 ms
41,000 KB
testcase_04 AC 118 ms
40,280 KB
testcase_05 AC 129 ms
41,372 KB
testcase_06 AC 131 ms
41,252 KB
testcase_07 AC 132 ms
41,228 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 120 ms
40,088 KB
testcase_11 WA -
testcase_12 AC 118 ms
40,168 KB
testcase_13 WA -
testcase_14 AC 132 ms
41,388 KB
testcase_15 AC 136 ms
41,364 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 266 ms
46,300 KB
testcase_19 AC 576 ms
50,108 KB
testcase_20 AC 379 ms
48,088 KB
testcase_21 AC 347 ms
48,316 KB
testcase_22 AC 541 ms
50,576 KB
testcase_23 AC 462 ms
49,320 KB
testcase_24 AC 539 ms
49,704 KB
testcase_25 AC 337 ms
48,304 KB
testcase_26 WA -
testcase_27 AC 630 ms
50,860 KB
testcase_28 AC 541 ms
49,692 KB
testcase_29 AC 615 ms
50,872 KB
testcase_30 AC 547 ms
49,976 KB
testcase_31 AC 379 ms
48,512 KB
testcase_32 AC 399 ms
48,492 KB
testcase_33 AC 666 ms
50,704 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 550 ms
50,388 KB
testcase_37 AC 547 ms
50,412 KB
testcase_38 WA -
testcase_39 AC 605 ms
51,036 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        if(Result == 1){
            System.out.println(N - Result);
        }else{
            System.out.println(N - Result - 1);
        }
    }
    
    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 = 1;
        for(int i = N - 1 ; i > 0 ; i--){
            if(High.get(i) == N){
                for(int j = i - 1 ; j > 0 ; j--){
                    if(High.get(j) == N - 1){
                        Count++;
                        N--;
                    }
                }
            }
        }
        return Count;
    }
}
0