結果

問題 No.365 ジェンガソート
ユーザー bambambambam
提出日時 2019-08-27 13:38:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 59,880 KB
最終ジャッジ日時 2024-11-14 14:08:20
合計ジャッジ時間 17,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,264 KB
testcase_01 AC 126 ms
53,888 KB
testcase_02 AC 128 ms
53,864 KB
testcase_03 AC 125 ms
54,192 KB
testcase_04 AC 112 ms
52,988 KB
testcase_05 AC 129 ms
53,988 KB
testcase_06 AC 124 ms
53,968 KB
testcase_07 AC 123 ms
53,904 KB
testcase_08 AC 125 ms
53,880 KB
testcase_09 AC 129 ms
54,036 KB
testcase_10 AC 125 ms
54,060 KB
testcase_11 AC 127 ms
54,084 KB
testcase_12 AC 130 ms
54,116 KB
testcase_13 AC 134 ms
54,244 KB
testcase_14 AC 130 ms
54,084 KB
testcase_15 AC 134 ms
54,164 KB
testcase_16 AC 529 ms
59,424 KB
testcase_17 AC 552 ms
59,332 KB
testcase_18 AC 234 ms
57,732 KB
testcase_19 AC 563 ms
59,880 KB
testcase_20 AC 336 ms
58,624 KB
testcase_21 AC 339 ms
59,108 KB
testcase_22 AC 542 ms
59,516 KB
testcase_23 AC 418 ms
59,200 KB
testcase_24 AC 543 ms
59,460 KB
testcase_25 AC 318 ms
58,644 KB
testcase_26 AC 497 ms
59,240 KB
testcase_27 AC 583 ms
59,260 KB
testcase_28 AC 501 ms
59,460 KB
testcase_29 AC 559 ms
59,372 KB
testcase_30 AC 513 ms
59,328 KB
testcase_31 AC 366 ms
58,968 KB
testcase_32 AC 372 ms
59,268 KB
testcase_33 AC 536 ms
59,148 KB
testcase_34 AC 290 ms
58,700 KB
testcase_35 AC 582 ms
59,324 KB
testcase_36 AC 518 ms
59,040 KB
testcase_37 AC 509 ms
58,836 KB
testcase_38 AC 563 ms
59,452 KB
testcase_39 AC 571 ms
59,736 KB
testcase_40 AC 608 ms
59,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		int cnt = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (a[i] == n) {
				cnt++;
				n--;
			}
		}
		System.out.println(a.length - cnt);
	}
}
0