結果

問題 No.365 ジェンガソート
ユーザー keitamidokeitamido
提出日時 2017-06-10 15:44:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 698 bytes
コンパイル時間 2,874 ms
コンパイル使用メモリ 76,332 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2024-09-24 15:41:54
合計ジャッジ時間 9,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
60,940 KB
testcase_01 AC 134 ms
54,220 KB
testcase_02 AC 133 ms
54,040 KB
testcase_03 AC 133 ms
54,244 KB
testcase_04 AC 136 ms
54,024 KB
testcase_05 AC 138 ms
53,988 KB
testcase_06 AC 139 ms
54,108 KB
testcase_07 AC 139 ms
53,996 KB
testcase_08 AC 139 ms
53,988 KB
testcase_09 AC 135 ms
53,896 KB
testcase_10 AC 135 ms
54,052 KB
testcase_11 AC 136 ms
54,124 KB
testcase_12 AC 139 ms
54,112 KB
testcase_13 AC 142 ms
54,100 KB
testcase_14 AC 138 ms
54,148 KB
testcase_15 AC 147 ms
54,080 KB
testcase_16 AC 648 ms
59,280 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.*;

class JengaSortFix2 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int max = sc.nextInt();
		int cnt = max - 1;
		ArrayList<Integer> nlist = new ArrayList<Integer>();
		nlist.add(sc.nextInt());
		for (int i = 0; i < max - 1; i++) {
			int next = sc.nextInt();
			if (next > JengaSortFix2.maxNum(nlist)) {
				if (nlist.contains(next - 1)) {
					cnt--;
				} else {
					cnt = max - 1;
				}
			nlist.add(next);
			}
		}
		System.out.println(cnt);
	}
	private static int maxNum(ArrayList<Integer> nlist) {
		int max = 0;
		for (Integer n : nlist) {
			int num = n.intValue();
			if (num > max) {
				max = num;
			}
		}
		return max;
	}
}
0