結果

問題 No.365 ジェンガソート
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-31 08:51:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 59,728 KB
最終ジャッジ日時 2024-10-12 02:20:05
合計ジャッジ時間 19,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,996 KB
testcase_01 AC 134 ms
53,676 KB
testcase_02 AC 135 ms
53,936 KB
testcase_03 AC 135 ms
53,992 KB
testcase_04 AC 133 ms
53,984 KB
testcase_05 AC 133 ms
54,052 KB
testcase_06 AC 133 ms
54,040 KB
testcase_07 AC 132 ms
53,972 KB
testcase_08 AC 135 ms
53,792 KB
testcase_09 AC 133 ms
54,072 KB
testcase_10 AC 135 ms
53,760 KB
testcase_11 AC 136 ms
53,892 KB
testcase_12 AC 134 ms
53,936 KB
testcase_13 AC 140 ms
54,100 KB
testcase_14 AC 136 ms
53,836 KB
testcase_15 AC 141 ms
53,984 KB
testcase_16 AC 580 ms
59,340 KB
testcase_17 AC 610 ms
59,464 KB
testcase_18 AC 256 ms
57,972 KB
testcase_19 AC 606 ms
59,728 KB
testcase_20 AC 370 ms
58,852 KB
testcase_21 AC 332 ms
58,884 KB
testcase_22 AC 569 ms
59,440 KB
testcase_23 AC 472 ms
59,256 KB
testcase_24 AC 568 ms
59,148 KB
testcase_25 AC 340 ms
59,116 KB
testcase_26 AC 532 ms
59,068 KB
testcase_27 AC 610 ms
59,200 KB
testcase_28 AC 520 ms
59,220 KB
testcase_29 AC 626 ms
59,220 KB
testcase_30 AC 544 ms
59,276 KB
testcase_31 AC 380 ms
58,912 KB
testcase_32 AC 382 ms
59,348 KB
testcase_33 AC 626 ms
59,296 KB
testcase_34 AC 307 ms
58,636 KB
testcase_35 AC 545 ms
59,464 KB
testcase_36 AC 519 ms
58,972 KB
testcase_37 AC 525 ms
58,924 KB
testcase_38 AC 573 ms
59,404 KB
testcase_39 AC 578 ms
59,592 KB
testcase_40 AC 621 ms
59,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercises1 {

	private static Scanner sc;

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

		int num = sc.nextInt();
	    int[] array = new int[num];

	    for (int n = 0; n < num; n++){
	      array[n] = sc.nextInt();
	    }
	    
	    for (int i = array.length - 1; i >= 0; i--){
	    	if (array[i] == num){
	    		num--;
	    	}
	    }
	    System.out.println(num);
	}
}
0