結果
問題 | No.365 ジェンガソート |
ユーザー | tamago324_pad |
提出日時 | 2016-06-03 22:13:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 2,236 ms |
コンパイル使用メモリ | 75,800 KB |
実行使用メモリ | 78,616 KB |
最終ジャッジ日時 | 2024-10-08 06:44:48 |
合計ジャッジ時間 | 8,386 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 129 ms
54,144 KB |
testcase_02 | WA | - |
testcase_03 | AC | 125 ms
53,916 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 125 ms
54,108 KB |
testcase_11 | WA | - |
testcase_12 | AC | 115 ms
52,720 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
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.print(result); } }