結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-14 11:57:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,171 ms / 2,500 ms
コード長 411 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 47,676 KB
最終ジャッジ日時 2024-07-05 18:49:30
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,332 KB
testcase_01 AC 113 ms
40,196 KB
testcase_02 AC 111 ms
39,908 KB
testcase_03 AC 125 ms
41,024 KB
testcase_04 AC 136 ms
41,208 KB
testcase_05 AC 154 ms
41,736 KB
testcase_06 AC 178 ms
42,088 KB
testcase_07 AC 200 ms
42,564 KB
testcase_08 AC 207 ms
43,344 KB
testcase_09 AC 124 ms
41,284 KB
testcase_10 AC 111 ms
40,128 KB
testcase_11 AC 1,171 ms
47,676 KB
testcase_12 AC 566 ms
47,448 KB
testcase_13 AC 129 ms
40,900 KB
testcase_14 AC 125 ms
41,400 KB
testcase_15 AC 128 ms
41,120 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[] m = new int[n];
    for(int i = 0; i < n; i++) {
      m[i] = sc.nextInt();
    }
    int ans = 0;
    for(int i = 0; i < n; i++) {
      for(int j = i + 1; j < n; j++) {
        if(m[i] > m[j]) ans++;
      }
    }
    System.out.println(ans);
  }
}
0