結果

問題 No.365 ジェンガソート
ユーザー tentententen
提出日時 2020-10-03 11:21:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 59,724 KB
最終ジャッジ日時 2024-07-18 04:14:28
合計ジャッジ時間 17,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,120 KB
testcase_01 AC 118 ms
54,280 KB
testcase_02 AC 124 ms
54,048 KB
testcase_03 AC 123 ms
54,096 KB
testcase_04 AC 128 ms
53,952 KB
testcase_05 AC 126 ms
53,828 KB
testcase_06 AC 114 ms
52,704 KB
testcase_07 AC 120 ms
54,020 KB
testcase_08 AC 121 ms
54,104 KB
testcase_09 AC 120 ms
54,072 KB
testcase_10 AC 117 ms
54,332 KB
testcase_11 AC 122 ms
54,452 KB
testcase_12 AC 112 ms
52,932 KB
testcase_13 AC 125 ms
54,184 KB
testcase_14 AC 118 ms
53,824 KB
testcase_15 AC 126 ms
54,004 KB
testcase_16 AC 518 ms
59,624 KB
testcase_17 AC 499 ms
59,292 KB
testcase_18 AC 230 ms
57,712 KB
testcase_19 AC 513 ms
59,652 KB
testcase_20 AC 323 ms
58,620 KB
testcase_21 AC 280 ms
58,220 KB
testcase_22 AC 486 ms
59,376 KB
testcase_23 AC 405 ms
58,812 KB
testcase_24 AC 507 ms
59,424 KB
testcase_25 AC 314 ms
58,944 KB
testcase_26 AC 495 ms
59,344 KB
testcase_27 AC 560 ms
59,372 KB
testcase_28 AC 460 ms
59,480 KB
testcase_29 AC 581 ms
59,536 KB
testcase_30 AC 464 ms
59,372 KB
testcase_31 AC 302 ms
57,680 KB
testcase_32 AC 327 ms
59,112 KB
testcase_33 AC 563 ms
59,532 KB
testcase_34 AC 264 ms
58,616 KB
testcase_35 AC 449 ms
59,396 KB
testcase_36 AC 458 ms
59,204 KB
testcase_37 AC 456 ms
58,900 KB
testcase_38 AC 515 ms
59,496 KB
testcase_39 AC 544 ms
59,724 KB
testcase_40 AC 516 ms
59,292 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];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		int count = n;
		int num = n;
		for (int i = n - 1; i >= 0; i--) {
		    if (arr[i] == num) {
		        count--;
		        num--;
		    }
		}
		System.out.println(count);
	}
}
0