結果

問題 No.365 ジェンガソート
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 12:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 3,749 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 55,444 KB
最終ジャッジ日時 2024-07-07 18:48:46
合計ジャッジ時間 18,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,048 KB
testcase_01 AC 100 ms
40,372 KB
testcase_02 AC 98 ms
39,896 KB
testcase_03 AC 97 ms
39,916 KB
testcase_04 AC 109 ms
41,220 KB
testcase_05 AC 96 ms
39,836 KB
testcase_06 AC 112 ms
41,088 KB
testcase_07 AC 106 ms
41,408 KB
testcase_08 AC 107 ms
40,912 KB
testcase_09 AC 109 ms
41,328 KB
testcase_10 AC 101 ms
39,908 KB
testcase_11 AC 109 ms
39,844 KB
testcase_12 AC 110 ms
41,372 KB
testcase_13 AC 113 ms
41,056 KB
testcase_14 AC 112 ms
41,072 KB
testcase_15 AC 117 ms
41,320 KB
testcase_16 AC 608 ms
51,360 KB
testcase_17 AC 555 ms
53,480 KB
testcase_18 AC 247 ms
47,024 KB
testcase_19 AC 573 ms
52,980 KB
testcase_20 AC 357 ms
49,096 KB
testcase_21 AC 351 ms
48,624 KB
testcase_22 AC 590 ms
52,088 KB
testcase_23 AC 445 ms
50,284 KB
testcase_24 AC 559 ms
51,940 KB
testcase_25 AC 350 ms
48,144 KB
testcase_26 AC 550 ms
50,904 KB
testcase_27 AC 684 ms
53,404 KB
testcase_28 AC 548 ms
51,036 KB
testcase_29 AC 715 ms
54,120 KB
testcase_30 AC 535 ms
50,960 KB
testcase_31 AC 365 ms
48,564 KB
testcase_32 AC 367 ms
48,924 KB
testcase_33 AC 675 ms
54,420 KB
testcase_34 AC 302 ms
47,928 KB
testcase_35 AC 499 ms
51,820 KB
testcase_36 AC 545 ms
53,148 KB
testcase_37 AC 541 ms
54,536 KB
testcase_38 AC 665 ms
55,444 KB
testcase_39 AC 588 ms
54,596 KB
testcase_40 AC 553 ms
53,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	}

}
0