結果

問題 No.365 ジェンガソート
ユーザー htensaihtensai
提出日時 2019-11-21 11:02:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 59,608 KB
最終ジャッジ日時 2024-10-09 13:37:28
合計ジャッジ時間 19,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,056 KB
testcase_01 AC 129 ms
54,132 KB
testcase_02 AC 127 ms
54,060 KB
testcase_03 AC 129 ms
54,028 KB
testcase_04 AC 126 ms
53,900 KB
testcase_05 AC 129 ms
53,540 KB
testcase_06 AC 116 ms
52,688 KB
testcase_07 AC 128 ms
53,876 KB
testcase_08 AC 130 ms
53,888 KB
testcase_09 AC 131 ms
53,864 KB
testcase_10 AC 130 ms
54,040 KB
testcase_11 AC 131 ms
53,888 KB
testcase_12 AC 130 ms
54,020 KB
testcase_13 AC 136 ms
53,892 KB
testcase_14 AC 130 ms
54,132 KB
testcase_15 AC 141 ms
54,012 KB
testcase_16 AC 556 ms
59,344 KB
testcase_17 AC 538 ms
59,268 KB
testcase_18 AC 245 ms
58,116 KB
testcase_19 AC 558 ms
59,332 KB
testcase_20 AC 363 ms
58,452 KB
testcase_21 AC 356 ms
58,932 KB
testcase_22 AC 562 ms
59,360 KB
testcase_23 AC 418 ms
59,192 KB
testcase_24 AC 505 ms
59,312 KB
testcase_25 AC 328 ms
59,076 KB
testcase_26 AC 499 ms
59,196 KB
testcase_27 AC 601 ms
59,472 KB
testcase_28 AC 506 ms
59,308 KB
testcase_29 AC 591 ms
59,112 KB
testcase_30 AC 513 ms
59,096 KB
testcase_31 AC 362 ms
58,972 KB
testcase_32 AC 346 ms
59,072 KB
testcase_33 AC 577 ms
59,160 KB
testcase_34 AC 290 ms
58,388 KB
testcase_35 AC 558 ms
59,320 KB
testcase_36 AC 509 ms
58,812 KB
testcase_37 AC 505 ms
58,808 KB
testcase_38 AC 604 ms
59,492 KB
testcase_39 AC 556 ms
59,608 KB
testcase_40 AC 597 ms
59,244 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[] arr = new int[n + 1];
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    arr[x] = i;
		}
		int max = n - 1;
		for (int i = n; i > 1; i--) {
		    if (arr[i] > arr[i - 1]) {
		        max--;
		    } else {
		        break;
		    }
		}
	    System.out.println(max);
	}
}
0