結果
問題 | No.365 ジェンガソート |
ユーザー | kenji_shioya |
提出日時 | 2016-05-30 23:38:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 3,912 ms |
コンパイル使用メモリ | 76,404 KB |
実行使用メモリ | 71,776 KB |
最終ジャッジ日時 | 2024-10-07 19:43:48 |
合計ジャッジ時間 | 40,714 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,100 KB |
testcase_01 | AC | 132 ms
41,672 KB |
testcase_02 | AC | 133 ms
41,708 KB |
testcase_03 | AC | 133 ms
41,324 KB |
testcase_04 | AC | 134 ms
40,844 KB |
testcase_05 | AC | 131 ms
41,508 KB |
testcase_06 | AC | 134 ms
41,404 KB |
testcase_07 | AC | 135 ms
41,024 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 138 ms
41,368 KB |
testcase_15 | AC | 145 ms
41,296 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 269 ms
46,928 KB |
testcase_19 | AC | 1,223 ms
60,468 KB |
testcase_20 | AC | 397 ms
48,144 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 555 ms
50,556 KB |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | AC | 1,558 ms
60,420 KB |
testcase_40 | WA | - |
ソースコード
import java.util.*; public class Exercise38{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int num = sc.nextInt(); ArrayList<Integer> array = new ArrayList<Integer>(); for (int n = 0; n < num; n++){ array.add(sc.nextInt()); } int count = 0; for (int n = 1; n < array.size(); n++){ if (array.get(n - 1) > array.get(n)){ count++; int x = array.get(n); array.remove(n); array.add(0, x); } } System.out.println(count); } }