結果

問題 No.365 ジェンガソート
ユーザー ki_ki33ki_ki33
提出日時 2016-04-29 22:33:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 48,468 KB
最終ジャッジ日時 2024-10-12 01:39:44
合計ジャッジ時間 17,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,888 KB
testcase_01 AC 126 ms
41,028 KB
testcase_02 AC 125 ms
41,236 KB
testcase_03 AC 129 ms
41,072 KB
testcase_04 AC 129 ms
41,040 KB
testcase_05 AC 130 ms
41,072 KB
testcase_06 AC 129 ms
41,092 KB
testcase_07 AC 116 ms
41,328 KB
testcase_08 AC 126 ms
41,184 KB
testcase_09 AC 132 ms
41,216 KB
testcase_10 AC 129 ms
41,216 KB
testcase_11 AC 116 ms
41,224 KB
testcase_12 AC 132 ms
41,076 KB
testcase_13 AC 134 ms
41,396 KB
testcase_14 AC 123 ms
39,816 KB
testcase_15 AC 136 ms
41,288 KB
testcase_16 AC 555 ms
48,060 KB
testcase_17 AC 617 ms
48,100 KB
testcase_18 AC 252 ms
46,616 KB
testcase_19 AC 602 ms
48,468 KB
testcase_20 AC 381 ms
47,320 KB
testcase_21 AC 328 ms
46,060 KB
testcase_22 AC 578 ms
47,948 KB
testcase_23 AC 467 ms
47,728 KB
testcase_24 AC 531 ms
48,228 KB
testcase_25 AC 331 ms
47,820 KB
testcase_26 AC 542 ms
48,152 KB
testcase_27 AC 597 ms
48,196 KB
testcase_28 AC 509 ms
48,016 KB
testcase_29 AC 607 ms
48,276 KB
testcase_30 AC 515 ms
47,972 KB
testcase_31 AC 361 ms
47,608 KB
testcase_32 AC 372 ms
47,748 KB
testcase_33 AC 616 ms
48,384 KB
testcase_34 AC 299 ms
47,188 KB
testcase_35 AC 557 ms
48,172 KB
testcase_36 AC 508 ms
46,832 KB
testcase_37 AC 537 ms
47,552 KB
testcase_38 AC 615 ms
48,440 KB
testcase_39 AC 574 ms
48,220 KB
testcase_40 AC 537 ms
46,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.util.Scanner;
public class Main {
	static final long C =  1000000007;
	static final int CY = 1000000000;
	StringBuilder sb;

	public void calc() {
		sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);

		Scanner sc = new Scanner(bs);

		int n = sc.nextInt();

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


		long ans = 0;
		int bef = n+1;
		for (int i=n-1; i >= 0; i--) {
			if (bef-1 != a[i]) {
				ans++;
			}else {
				bef = a[i];
			}
		}




		System.out.println(ans);
	}

	public static void main(String[] args) {
		Main main = new Main();
		main.calc();

	}
}
0