結果

問題 No.365 ジェンガソート
ユーザー 37zigen37zigen
提出日時 2016-04-30 00:00:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 48,464 KB
最終ジャッジ日時 2024-10-12 01:49:57
合計ジャッジ時間 17,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,816 KB
testcase_01 AC 132 ms
40,952 KB
testcase_02 AC 130 ms
41,052 KB
testcase_03 AC 130 ms
40,936 KB
testcase_04 AC 132 ms
40,956 KB
testcase_05 AC 130 ms
40,896 KB
testcase_06 AC 130 ms
40,948 KB
testcase_07 AC 132 ms
40,968 KB
testcase_08 AC 129 ms
41,076 KB
testcase_09 AC 132 ms
40,960 KB
testcase_10 AC 128 ms
40,980 KB
testcase_11 AC 130 ms
40,928 KB
testcase_12 AC 133 ms
40,948 KB
testcase_13 AC 132 ms
41,188 KB
testcase_14 AC 133 ms
40,924 KB
testcase_15 AC 138 ms
40,980 KB
testcase_16 AC 561 ms
48,192 KB
testcase_17 AC 605 ms
48,152 KB
testcase_18 AC 243 ms
46,040 KB
testcase_19 AC 593 ms
48,464 KB
testcase_20 AC 360 ms
47,440 KB
testcase_21 AC 331 ms
47,640 KB
testcase_22 AC 559 ms
47,944 KB
testcase_23 AC 464 ms
48,216 KB
testcase_24 AC 550 ms
48,192 KB
testcase_25 AC 335 ms
47,540 KB
testcase_26 AC 529 ms
47,772 KB
testcase_27 AC 605 ms
48,360 KB
testcase_28 AC 520 ms
48,004 KB
testcase_29 AC 616 ms
47,940 KB
testcase_30 AC 517 ms
48,028 KB
testcase_31 AC 365 ms
47,808 KB
testcase_32 AC 385 ms
47,508 KB
testcase_33 AC 595 ms
48,072 KB
testcase_34 AC 296 ms
46,408 KB
testcase_35 AC 551 ms
48,044 KB
testcase_36 AC 522 ms
47,852 KB
testcase_37 AC 525 ms
47,840 KB
testcase_38 AC 583 ms
48,152 KB
testcase_39 AC 584 ms
48,428 KB
testcase_40 AC 568 ms
48,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		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 max=n;
		int count=0;
		for(int i=n-1;i>=0;i--){
			if(max==a[i])max--;
			else count++;
		}
		System.out.println(count);
	}
}
0