結果
問題 | No.365 ジェンガソート |
ユーザー | tamago324_pad |
提出日時 | 2016-06-03 22:16:48 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 2,513 ms |
コンパイル使用メモリ | 75,232 KB |
実行使用メモリ | 46,336 KB |
最終ジャッジ日時 | 2024-10-08 06:46:30 |
合計ジャッジ時間 | 8,885 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
46,336 KB |
testcase_01 | AC | 130 ms
41,052 KB |
testcase_02 | AC | 131 ms
41,424 KB |
testcase_03 | AC | 131 ms
41,084 KB |
testcase_04 | AC | 115 ms
41,440 KB |
testcase_05 | AC | 132 ms
41,096 KB |
testcase_06 | AC | 131 ms
40,976 KB |
testcase_07 | AC | 129 ms
41,168 KB |
testcase_08 | AC | 115 ms
41,668 KB |
testcase_09 | AC | 128 ms
41,200 KB |
testcase_10 | AC | 129 ms
41,156 KB |
testcase_11 | AC | 132 ms
41,152 KB |
testcase_12 | AC | 132 ms
41,532 KB |
testcase_13 | AC | 138 ms
41,024 KB |
testcase_14 | AC | 129 ms
41,144 KB |
testcase_15 | AC | 140 ms
41,176 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
// No.365 import java.util.Scanner; import java.util.ArrayList; class JengaSort{ public static void main(String[] args){ ArrayList<Integer> jengaList = new ArrayList<>(); Scanner scan = new Scanner(System.in); int result = 0; int max = scan.nextInt(); for(int i = 0; i < max; i++){ jengaList.add(scan.nextInt()); } for(int i = max - 1; i > 0; i--){ Integer iIndex = jengaList.indexOf(i); Integer nIndex = jengaList.indexOf(i + 1); if(iIndex > nIndex){ // 左にもっていく while(iIndex > 0){ Integer before = jengaList.set(iIndex - 1, i); jengaList.set(iIndex, before); iIndex--; } result++; } } System.out.println(result); } }