結果

問題 No.365 ジェンガソート
ユーザー keitamidokeitamido
提出日時 2017-06-10 17:46:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 75,040 KB
実行使用メモリ 65,524 KB
最終ジャッジ日時 2024-09-24 15:44:20
合計ジャッジ時間 17,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,080 KB
testcase_01 AC 123 ms
54,228 KB
testcase_02 AC 124 ms
54,012 KB
testcase_03 AC 122 ms
53,980 KB
testcase_04 AC 127 ms
54,404 KB
testcase_05 AC 127 ms
53,928 KB
testcase_06 AC 107 ms
52,956 KB
testcase_07 AC 123 ms
54,112 KB
testcase_08 AC 130 ms
54,116 KB
testcase_09 AC 115 ms
52,912 KB
testcase_10 AC 126 ms
54,116 KB
testcase_11 AC 127 ms
54,236 KB
testcase_12 AC 126 ms
53,992 KB
testcase_13 AC 129 ms
54,136 KB
testcase_14 AC 126 ms
54,268 KB
testcase_15 AC 133 ms
54,276 KB
testcase_16 AC 627 ms
59,572 KB
testcase_17 AC 564 ms
61,708 KB
testcase_18 AC 250 ms
57,380 KB
testcase_19 AC 603 ms
64,348 KB
testcase_20 AC 372 ms
61,288 KB
testcase_21 AC 321 ms
58,628 KB
testcase_22 AC 563 ms
59,408 KB
testcase_23 AC 422 ms
59,012 KB
testcase_24 AC 544 ms
59,188 KB
testcase_25 AC 340 ms
58,724 KB
testcase_26 AC 501 ms
59,240 KB
testcase_27 AC 561 ms
59,456 KB
testcase_28 AC 449 ms
59,356 KB
testcase_29 AC 556 ms
59,544 KB
testcase_30 AC 509 ms
59,400 KB
testcase_31 AC 352 ms
58,616 KB
testcase_32 AC 366 ms
58,808 KB
testcase_33 AC 570 ms
59,436 KB
testcase_34 AC 298 ms
58,732 KB
testcase_35 AC 518 ms
59,452 KB
testcase_36 AC 554 ms
65,524 KB
testcase_37 AC 484 ms
58,992 KB
testcase_38 AC 579 ms
59,264 KB
testcase_39 AC 574 ms
61,956 KB
testcase_40 AC 551 ms
61,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class JengaSortFix3 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int length = sc.nextInt();
		int cnt = length - 1;
		HashSet<Integer> nset = new HashSet<Integer>();
		int maxInSet = sc.nextInt();
		nset.add(maxInSet);
		for (int i = 0; i < length - 1; i++) {
			int next = sc.nextInt();
			if (next > maxInSet) {
				maxInSet = next;
				if (nset.contains(next - 1)) {
					cnt--;
				} else {
					cnt = length - 1;
				}
			nset.add(next);
			}
		}
		System.out.println(cnt);
	}
}
0