結果
問題 | No.365 ジェンガソート |
ユーザー | shinwisteria |
提出日時 | 2017-04-01 11:43:33 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 594 bytes |
コンパイル時間 | 3,170 ms |
コンパイル使用メモリ | 75,960 KB |
実行使用メモリ | 78,772 KB |
最終ジャッジ日時 | 2024-07-07 18:47:06 |
合計ジャッジ時間 | 9,381 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
46,764 KB |
testcase_01 | AC | 107 ms
41,156 KB |
testcase_02 | AC | 123 ms
41,416 KB |
testcase_03 | AC | 105 ms
41,268 KB |
testcase_04 | AC | 122 ms
41,344 KB |
testcase_05 | AC | 124 ms
41,156 KB |
testcase_06 | AC | 121 ms
41,324 KB |
testcase_07 | AC | 123 ms
41,280 KB |
testcase_08 | AC | 110 ms
41,300 KB |
testcase_09 | AC | 108 ms
41,240 KB |
testcase_10 | AC | 120 ms
41,240 KB |
testcase_11 | AC | 124 ms
41,352 KB |
testcase_12 | AC | 125 ms
41,416 KB |
testcase_13 | AC | 130 ms
41,660 KB |
testcase_14 | AC | 125 ms
41,144 KB |
testcase_15 | AC | 133 ms
41,104 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 | -- | - |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Jengasort { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(); ArrayList<Integer> list = new ArrayList<>(); for(int i = 0;i < N;i++){ list.add(s.nextInt()); } s.close(); int count = 0; for(int i = N;i > 1;i--){ if(list.indexOf(i) < list.indexOf(i-1)){ count++; list.remove(list.indexOf(i-1)); list.add(0, i-1); //System.out.println(list); } } System.out.println(count); } }