結果

問題 No.365 ジェンガソート
ユーザー jp_stejp_ste
提出日時 2016-05-09 21:06:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 59,620 KB
最終ジャッジ日時 2024-10-12 02:16:16
合計ジャッジ時間 17,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,796 KB
testcase_01 AC 129 ms
53,860 KB
testcase_02 AC 128 ms
54,088 KB
testcase_03 AC 129 ms
54,100 KB
testcase_04 AC 133 ms
53,988 KB
testcase_05 AC 132 ms
54,140 KB
testcase_06 AC 129 ms
53,820 KB
testcase_07 AC 115 ms
53,028 KB
testcase_08 AC 126 ms
53,812 KB
testcase_09 AC 128 ms
54,028 KB
testcase_10 AC 127 ms
54,072 KB
testcase_11 AC 127 ms
54,132 KB
testcase_12 AC 119 ms
52,976 KB
testcase_13 AC 136 ms
53,788 KB
testcase_14 AC 129 ms
54,284 KB
testcase_15 AC 138 ms
54,084 KB
testcase_16 AC 551 ms
59,216 KB
testcase_17 AC 602 ms
59,236 KB
testcase_18 AC 244 ms
58,388 KB
testcase_19 AC 574 ms
59,536 KB
testcase_20 AC 354 ms
58,784 KB
testcase_21 AC 357 ms
58,792 KB
testcase_22 AC 518 ms
59,248 KB
testcase_23 AC 474 ms
59,064 KB
testcase_24 AC 508 ms
59,200 KB
testcase_25 AC 333 ms
58,760 KB
testcase_26 AC 431 ms
58,680 KB
testcase_27 AC 596 ms
59,172 KB
testcase_28 AC 487 ms
59,216 KB
testcase_29 AC 564 ms
59,360 KB
testcase_30 AC 527 ms
59,248 KB
testcase_31 AC 353 ms
59,120 KB
testcase_32 AC 368 ms
59,400 KB
testcase_33 AC 578 ms
59,396 KB
testcase_34 AC 295 ms
58,840 KB
testcase_35 AC 543 ms
59,404 KB
testcase_36 AC 519 ms
58,168 KB
testcase_37 AC 500 ms
58,840 KB
testcase_38 AC 590 ms
59,292 KB
testcase_39 AC 559 ms
59,620 KB
testcase_40 AC 531 ms
59,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = scan.nextInt();
            int list[] = new int[n];
            for(int i=0; i<n; i++) {
                list[i] = scan.nextInt();
            }
            
            int max = list[0];
            int index = 0;
            for(int i=0; i<n; i++) {
                if(max < list[i]) {
                    max = list[i];
                    index = i;
                }
            }
            
            int target = max;
            int count = 0;
            for(int i=index; i>=0; i--) {
                if(list[i] == target) { 
                    count++;
                    target--;
                }
            }
            
            System.out.println(n-count);
        }
    }
}
0