結果

問題 No.397 NO MORE KADOMATSU
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-28 23:01:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 80,344 KB
実行使用メモリ 75,444 KB
平均クエリ数 651.67
最終ジャッジ日時 2024-07-17 02:21:42
合計ジャッジ時間 7,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
71,428 KB
testcase_01 AC 176 ms
71,428 KB
testcase_02 AC 140 ms
69,644 KB
testcase_03 AC 215 ms
71,864 KB
testcase_04 AC 171 ms
71,012 KB
testcase_05 AC 204 ms
71,468 KB
testcase_06 AC 218 ms
71,348 KB
testcase_07 AC 225 ms
73,644 KB
testcase_08 AC 195 ms
71,864 KB
testcase_09 AC 164 ms
70,204 KB
testcase_10 AC 452 ms
75,444 KB
testcase_11 AC 163 ms
70,404 KB
testcase_12 AC 195 ms
71,744 KB
testcase_13 AC 302 ms
72,428 KB
testcase_14 AC 323 ms
73,284 KB
testcase_15 AC 317 ms
72,532 KB
testcase_16 AC 152 ms
70,176 KB
testcase_17 AC 153 ms
70,392 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];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
    }
    ArrayList<Integer> list1 = new ArrayList<Integer>();
    ArrayList<Integer> list2 = new ArrayList<Integer>();
    for(int i = 0; i < n; i++) {
      for(int j = i + 1; j < n; j++) {
        if(a[i] > a[j]) {
          list1.add(i);
          list2.add(j);
          int s = a[j];
          a[j] = a[i];
          a[i] = s;
        }
      }
    }
    System.out.println(list1.size());
    for(int i = 0; i < list1.size(); i++) {
      System.out.println(list1.get(i) + " " + list2.get(i));
    }
    int t = sc.nextInt();
    System.out.flush();
  }
}
0