結果

問題 No.365 ジェンガソート
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 11:57:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 529 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 66,328 KB
最終ジャッジ日時 2024-07-07 18:47:22
合計ジャッジ時間 9,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
46,208 KB
testcase_01 AC 94 ms
39,956 KB
testcase_02 AC 103 ms
40,920 KB
testcase_03 AC 102 ms
40,896 KB
testcase_04 AC 101 ms
41,100 KB
testcase_05 AC 102 ms
40,980 KB
testcase_06 AC 96 ms
39,920 KB
testcase_07 AC 102 ms
41,092 KB
testcase_08 AC 106 ms
39,600 KB
testcase_09 AC 94 ms
40,220 KB
testcase_10 AC 100 ms
40,844 KB
testcase_11 AC 93 ms
40,388 KB
testcase_12 AC 136 ms
41,220 KB
testcase_13 AC 107 ms
41,068 KB
testcase_14 AC 102 ms
40,984 KB
testcase_15 AC 111 ms
41,016 KB
testcase_16 AC 799 ms
59,908 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
public class Jengasort {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		ArrayList<Integer> list = new ArrayList<>();
		for(int i = 0;i < N;i++){
			list.add(s.nextInt());
		}
		s.close();
		int count = N-1;
		for(int i = N-1;i > 0;i--){
			if(list.indexOf(i) < list.indexOf(i+1)){
				count--;
			}else{
				break;
			}
		}
		System.out.println(count);

	}

}
0