結果

問題 No.365 ジェンガソート
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-31 00:29:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 3,796 ms
コンパイル使用メモリ 80,976 KB
実行使用メモリ 73,504 KB
最終ジャッジ日時 2024-10-07 19:58:24
合計ジャッジ時間 26,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,756 KB
testcase_01 AC 109 ms
52,848 KB
testcase_02 AC 121 ms
54,104 KB
testcase_03 AC 118 ms
53,848 KB
testcase_04 AC 121 ms
53,896 KB
testcase_05 AC 118 ms
53,940 KB
testcase_06 AC 121 ms
54,248 KB
testcase_07 AC 109 ms
52,852 KB
testcase_08 AC 107 ms
52,964 KB
testcase_09 AC 118 ms
53,868 KB
testcase_10 AC 120 ms
54,060 KB
testcase_11 AC 107 ms
52,992 KB
testcase_12 AC 107 ms
52,840 KB
testcase_13 AC 124 ms
54,032 KB
testcase_14 AC 105 ms
52,964 KB
testcase_15 AC 127 ms
53,784 KB
testcase_16 AC 977 ms
71,212 KB
testcase_17 AC 955 ms
71,436 KB
testcase_18 AC 237 ms
57,708 KB
testcase_19 AC 683 ms
62,428 KB
testcase_20 AC 348 ms
58,932 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 551 ms
59,424 KB
testcase_24 AC 1,009 ms
71,272 KB
testcase_25 AC 368 ms
59,256 KB
testcase_26 WA -
testcase_27 AC 1,192 ms
71,364 KB
testcase_28 WA -
testcase_29 AC 1,129 ms
71,344 KB
testcase_30 AC 829 ms
69,276 KB
testcase_31 AC 395 ms
57,848 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 325 ms
59,116 KB
testcase_35 AC 979 ms
71,212 KB
testcase_36 AC 494 ms
61,244 KB
testcase_37 AC 1,164 ms
73,504 KB
testcase_38 AC 1,219 ms
71,296 KB
testcase_39 AC 758 ms
67,440 KB
testcase_40 AC 976 ms
71,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;

    int index = 1;

    while (index < array.size()){
      if (array.get(index) - array.get(index - 1) > 1){
        count++;
      }  
      if (array.get(index - 1) > array.get(index)){
        count++;
        array.remove(index);
        continue;
      }
      index++;
    }

    System.out.println(count);
  }
}
0