結果

問題 No.365 ジェンガソート
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 21:06:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 59,872 KB
最終ジャッジ日時 2024-11-21 21:26:39
合計ジャッジ時間 19,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,016 KB
testcase_01 AC 128 ms
53,980 KB
testcase_02 AC 114 ms
52,684 KB
testcase_03 AC 125 ms
54,116 KB
testcase_04 AC 124 ms
54,180 KB
testcase_05 AC 123 ms
53,996 KB
testcase_06 AC 125 ms
53,976 KB
testcase_07 AC 125 ms
53,976 KB
testcase_08 AC 114 ms
52,916 KB
testcase_09 AC 126 ms
53,940 KB
testcase_10 AC 125 ms
53,884 KB
testcase_11 AC 129 ms
54,368 KB
testcase_12 AC 130 ms
54,100 KB
testcase_13 AC 133 ms
54,088 KB
testcase_14 AC 128 ms
54,000 KB
testcase_15 AC 134 ms
54,148 KB
testcase_16 AC 576 ms
59,632 KB
testcase_17 AC 578 ms
59,388 KB
testcase_18 AC 253 ms
57,800 KB
testcase_19 AC 596 ms
59,796 KB
testcase_20 AC 353 ms
59,092 KB
testcase_21 AC 374 ms
59,872 KB
testcase_22 AC 587 ms
59,404 KB
testcase_23 AC 490 ms
59,332 KB
testcase_24 AC 529 ms
59,700 KB
testcase_25 AC 351 ms
59,584 KB
testcase_26 AC 521 ms
59,256 KB
testcase_27 AC 622 ms
59,388 KB
testcase_28 AC 482 ms
59,580 KB
testcase_29 AC 601 ms
59,560 KB
testcase_30 AC 527 ms
59,328 KB
testcase_31 AC 378 ms
59,164 KB
testcase_32 AC 400 ms
59,464 KB
testcase_33 AC 609 ms
59,516 KB
testcase_34 AC 323 ms
59,100 KB
testcase_35 AC 567 ms
59,464 KB
testcase_36 AC 529 ms
59,128 KB
testcase_37 AC 497 ms
59,064 KB
testcase_38 AC 662 ms
59,092 KB
testcase_39 AC 570 ms
59,788 KB
testcase_40 AC 571 ms
59,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int[] a = new int[n];
    int[] b = new int[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
      b[i] = a[i];
    }
    Arrays.sort(b);
    int count = 0;
    int p = n - 1;
    for(int i = n - 1; i >= 0; i--) {
      if(a[i] == b[p]) {
        count++;
        p--;
      }
    }
    System.out.println(n - count);
  }
}
0