結果

問題 No.397 NO MORE KADOMATSU
ユーザー atkrymatkrym
提出日時 2016-11-04 11:28:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 2,718 ms
コンパイル使用メモリ 89,744 KB
実行使用メモリ 73,096 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:35:40
合計ジャッジ時間 8,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
70,964 KB
testcase_01 AC 195 ms
71,596 KB
testcase_02 AC 162 ms
70,072 KB
testcase_03 AC 226 ms
71,736 KB
testcase_04 AC 194 ms
70,996 KB
testcase_05 AC 234 ms
73,096 KB
testcase_06 AC 263 ms
71,892 KB
testcase_07 AC 273 ms
71,224 KB
testcase_08 AC 199 ms
71,740 KB
testcase_09 AC 172 ms
70,196 KB
testcase_10 AC 406 ms
71,924 KB
testcase_11 AC 195 ms
70,700 KB
testcase_12 AC 336 ms
71,852 KB
testcase_13 AC 355 ms
72,124 KB
testcase_14 AC 333 ms
71,588 KB
testcase_15 AC 347 ms
72,112 KB
testcase_16 AC 183 ms
70,372 KB
testcase_17 AC 183 ms
70,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int[] ary = new int[n];
        for (int i = 0;i < n;i++) {
            ary[i] = sc.nextInt();
        }
        
        List<String> list = new ArrayList<>();
        
        for (int i = n-1;i >= 0;i--) {
            for (int j = 0;j < i;j++) {
                int a = ary[j];
                int b = ary[j+1];
                if (a > b) {
                    ary[j] = b;
                    ary[j+1] = a;
                    list.add(j+" "+(j+1));
                }
            }
        }
        
        System.out.println(list.size());
        list.stream().forEach(s -> System.out.println(s));
        
        sc.next();
    }
}
0