結果

問題 No.365 ジェンガソート
ユーザー spaciaspacia
提出日時 2016-06-03 11:25:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 49,208 KB
最終ジャッジ日時 2024-10-12 02:21:27
合計ジャッジ時間 18,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,508 KB
testcase_01 AC 133 ms
41,304 KB
testcase_02 AC 131 ms
41,560 KB
testcase_03 AC 131 ms
41,292 KB
testcase_04 AC 128 ms
41,012 KB
testcase_05 AC 130 ms
41,436 KB
testcase_06 AC 130 ms
41,140 KB
testcase_07 AC 131 ms
41,136 KB
testcase_08 AC 131 ms
41,308 KB
testcase_09 AC 131 ms
40,888 KB
testcase_10 AC 129 ms
40,824 KB
testcase_11 AC 140 ms
41,516 KB
testcase_12 AC 134 ms
41,152 KB
testcase_13 AC 133 ms
41,188 KB
testcase_14 AC 133 ms
41,464 KB
testcase_15 AC 137 ms
41,388 KB
testcase_16 AC 623 ms
48,860 KB
testcase_17 AC 569 ms
48,864 KB
testcase_18 AC 248 ms
46,040 KB
testcase_19 AC 604 ms
49,108 KB
testcase_20 AC 367 ms
47,468 KB
testcase_21 AC 339 ms
47,508 KB
testcase_22 AC 542 ms
48,504 KB
testcase_23 AC 464 ms
48,000 KB
testcase_24 AC 528 ms
48,624 KB
testcase_25 AC 337 ms
48,024 KB
testcase_26 AC 534 ms
48,416 KB
testcase_27 AC 615 ms
48,812 KB
testcase_28 AC 525 ms
48,664 KB
testcase_29 AC 656 ms
48,816 KB
testcase_30 AC 523 ms
48,576 KB
testcase_31 AC 380 ms
47,768 KB
testcase_32 AC 357 ms
48,108 KB
testcase_33 AC 628 ms
48,716 KB
testcase_34 AC 299 ms
47,632 KB
testcase_35 AC 569 ms
48,796 KB
testcase_36 AC 533 ms
48,720 KB
testcase_37 AC 546 ms
48,388 KB
testcase_38 AC 591 ms
48,832 KB
testcase_39 AC 583 ms
49,208 KB
testcase_40 AC 576 ms
48,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int[] nums = new int[n];
		int[] pos  = new int[n + 1];

		for (int i = 0; i < n; i++) {
			nums[i] = sc.nextInt();
			pos[nums[i]] = i;
		}

		System.out.println(solve(nums, pos));

		sc.close();
	}

	public static int solve (int[] nums, int[] pos) {
		for (int i = nums.length; i > 1; i--)
			if (pos[i] < pos[i - 1]) return i - 1;
		return 0;
	}

}
0