結果
問題 | No.365 ジェンガソート |
ユーザー | maru |
提出日時 | 2017-09-27 14:28:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 6,828 ms |
コンパイル使用メモリ | 76,172 KB |
実行使用メモリ | 63,436 KB |
最終ジャッジ日時 | 2024-11-15 17:37:17 |
合計ジャッジ時間 | 22,101 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
40,328 KB |
testcase_01 | AC | 135 ms
41,356 KB |
testcase_02 | AC | 121 ms
40,132 KB |
testcase_03 | AC | 136 ms
41,248 KB |
testcase_04 | AC | 133 ms
41,408 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 132 ms
41,324 KB |
testcase_08 | AC | 123 ms
40,168 KB |
testcase_09 | AC | 134 ms
41,412 KB |
testcase_10 | AC | 136 ms
41,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 138 ms
41,480 KB |
testcase_13 | AC | 138 ms
41,368 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 386 ms
48,628 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 559 ms
49,704 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 298 ms
47,960 KB |
testcase_35 | WA | - |
testcase_36 | AC | 556 ms
50,588 KB |
testcase_37 | AC | 560 ms
50,564 KB |
testcase_38 | AC | 650 ms
50,872 KB |
testcase_39 | AC | 618 ms
61,860 KB |
testcase_40 | AC | 606 ms
61,444 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class JengaSort { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); List<Integer> list = new ArrayList<Integer>(); for (int i = 0; i < N; i++) { list.add(sc.nextInt()); } int base = list.get(N - 1); int count = 0; for (int i = N-1; i > 0; i--) { int next = list.get(i - 1); if (next == base - 1) { base = next; } else { count++; } } System.out.println(count); } }