結果

問題 No.365 ジェンガソート
ユーザー YamaKasaYamaKasa
提出日時 2018-09-18 23:07:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 59,740 KB
最終ジャッジ日時 2024-07-18 08:08:12
合計ジャッジ時間 16,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,920 KB
testcase_01 AC 116 ms
53,908 KB
testcase_02 AC 114 ms
54,176 KB
testcase_03 AC 108 ms
52,932 KB
testcase_04 AC 106 ms
52,748 KB
testcase_05 AC 108 ms
53,908 KB
testcase_06 AC 116 ms
53,844 KB
testcase_07 AC 106 ms
53,096 KB
testcase_08 AC 107 ms
53,944 KB
testcase_09 AC 108 ms
53,916 KB
testcase_10 AC 101 ms
52,556 KB
testcase_11 AC 117 ms
54,256 KB
testcase_12 AC 102 ms
52,756 KB
testcase_13 AC 114 ms
53,804 KB
testcase_14 AC 107 ms
53,756 KB
testcase_15 AC 117 ms
54,208 KB
testcase_16 AC 481 ms
59,220 KB
testcase_17 AC 462 ms
59,136 KB
testcase_18 AC 212 ms
58,160 KB
testcase_19 AC 475 ms
59,740 KB
testcase_20 AC 310 ms
58,684 KB
testcase_21 AC 302 ms
59,316 KB
testcase_22 AC 484 ms
59,164 KB
testcase_23 AC 370 ms
59,040 KB
testcase_24 AC 457 ms
59,380 KB
testcase_25 AC 288 ms
59,272 KB
testcase_26 AC 375 ms
58,248 KB
testcase_27 AC 468 ms
59,336 KB
testcase_28 AC 432 ms
59,392 KB
testcase_29 AC 475 ms
59,292 KB
testcase_30 AC 420 ms
59,016 KB
testcase_31 AC 302 ms
58,880 KB
testcase_32 AC 281 ms
58,932 KB
testcase_33 AC 514 ms
59,248 KB
testcase_34 AC 269 ms
58,744 KB
testcase_35 AC 463 ms
59,564 KB
testcase_36 AC 449 ms
58,100 KB
testcase_37 AC 413 ms
57,672 KB
testcase_38 AC 530 ms
59,148 KB
testcase_39 AC 466 ms
59,400 KB
testcase_40 AC 468 ms
59,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []a = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		scan.close();
		int k = N;
		int cnt = 0;
		for(int i = N - 1; i >= 0; i--) {
			if(a[i] == k) {
				k--;
			}else {
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0