結果

問題 No.365 ジェンガソート
ユーザー keitamidokeitamido
提出日時 2017-06-10 16:16:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 64,152 KB
最終ジャッジ日時 2024-09-24 15:42:33
合計ジャッジ時間 18,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,852 KB
testcase_01 AC 131 ms
54,004 KB
testcase_02 AC 130 ms
54,140 KB
testcase_03 AC 131 ms
54,348 KB
testcase_04 AC 133 ms
54,104 KB
testcase_05 AC 130 ms
54,004 KB
testcase_06 AC 133 ms
54,320 KB
testcase_07 AC 128 ms
53,832 KB
testcase_08 AC 134 ms
54,712 KB
testcase_09 AC 134 ms
53,888 KB
testcase_10 AC 132 ms
54,012 KB
testcase_11 AC 118 ms
52,936 KB
testcase_12 AC 131 ms
54,096 KB
testcase_13 AC 136 ms
53,908 KB
testcase_14 AC 131 ms
54,060 KB
testcase_15 AC 139 ms
53,980 KB
testcase_16 AC 541 ms
59,288 KB
testcase_17 AC 623 ms
61,536 KB
testcase_18 AC 257 ms
58,376 KB
testcase_19 AC 636 ms
64,152 KB
testcase_20 AC 383 ms
61,060 KB
testcase_21 AC 361 ms
59,148 KB
testcase_22 AC 529 ms
59,344 KB
testcase_23 AC 465 ms
59,324 KB
testcase_24 AC 573 ms
59,484 KB
testcase_25 AC 331 ms
58,888 KB
testcase_26 AC 508 ms
59,244 KB
testcase_27 AC 596 ms
59,268 KB
testcase_28 AC 514 ms
59,256 KB
testcase_29 AC 576 ms
58,948 KB
testcase_30 AC 506 ms
59,340 KB
testcase_31 AC 368 ms
58,960 KB
testcase_32 AC 359 ms
59,224 KB
testcase_33 AC 599 ms
59,320 KB
testcase_34 AC 302 ms
58,648 KB
testcase_35 AC 549 ms
59,464 KB
testcase_36 AC 584 ms
63,576 KB
testcase_37 AC 510 ms
58,984 KB
testcase_38 AC 602 ms
59,424 KB
testcase_39 AC 606 ms
62,268 KB
testcase_40 AC 627 ms
63,768 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