結果

問題 No.365 ジェンガソート
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-04 02:32:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 59,792 KB
最終ジャッジ日時 2024-07-01 02:08:29
合計ジャッジ時間 19,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,996 KB
testcase_01 AC 133 ms
53,896 KB
testcase_02 AC 135 ms
54,168 KB
testcase_03 AC 134 ms
54,168 KB
testcase_04 AC 117 ms
52,844 KB
testcase_05 AC 132 ms
54,084 KB
testcase_06 AC 133 ms
53,860 KB
testcase_07 AC 132 ms
54,144 KB
testcase_08 AC 134 ms
54,096 KB
testcase_09 AC 136 ms
54,192 KB
testcase_10 AC 133 ms
54,004 KB
testcase_11 AC 133 ms
54,088 KB
testcase_12 AC 140 ms
54,160 KB
testcase_13 AC 139 ms
54,144 KB
testcase_14 AC 135 ms
54,164 KB
testcase_15 AC 140 ms
53,976 KB
testcase_16 AC 570 ms
59,308 KB
testcase_17 AC 499 ms
58,180 KB
testcase_18 AC 255 ms
58,016 KB
testcase_19 AC 574 ms
59,768 KB
testcase_20 AC 356 ms
58,816 KB
testcase_21 AC 359 ms
59,272 KB
testcase_22 AC 540 ms
59,564 KB
testcase_23 AC 475 ms
59,260 KB
testcase_24 AC 577 ms
59,544 KB
testcase_25 AC 342 ms
58,968 KB
testcase_26 AC 532 ms
59,308 KB
testcase_27 AC 615 ms
59,300 KB
testcase_28 AC 514 ms
59,332 KB
testcase_29 AC 579 ms
59,000 KB
testcase_30 AC 506 ms
59,440 KB
testcase_31 AC 363 ms
58,872 KB
testcase_32 AC 383 ms
59,016 KB
testcase_33 AC 639 ms
59,352 KB
testcase_34 AC 307 ms
58,784 KB
testcase_35 AC 551 ms
59,360 KB
testcase_36 AC 516 ms
59,144 KB
testcase_37 AC 528 ms
58,900 KB
testcase_38 AC 627 ms
59,240 KB
testcase_39 AC 579 ms
59,792 KB
testcase_40 AC 612 ms
59,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i = 0; i < n; i++){
			a[i] = sc.nextInt();
		}
		int m = n;
		int count = 0;
		for(int i = n-1; i >= 0; i--){
			if(a[i] == m){
				m--;
			}else{
				count++;
			}
		}
		System.out.println(count);
	}
}
0