結果

問題 No.397 NO MORE KADOMATSU
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 17:58:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 2,204 bytes
コンパイル時間 4,333 ms
コンパイル使用メモリ 80,516 KB
実行使用メモリ 58,504 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:38:43
合計ジャッジ時間 7,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
57,344 KB
testcase_01 AC 128 ms
56,792 KB
testcase_02 AC 83 ms
53,812 KB
testcase_03 AC 129 ms
57,244 KB
testcase_04 AC 134 ms
56,612 KB
testcase_05 AC 131 ms
56,636 KB
testcase_06 AC 161 ms
56,996 KB
testcase_07 AC 154 ms
57,304 KB
testcase_08 AC 135 ms
56,988 KB
testcase_09 AC 87 ms
53,864 KB
testcase_10 AC 198 ms
58,504 KB
testcase_11 AC 83 ms
53,992 KB
testcase_12 AC 166 ms
55,536 KB
testcase_13 AC 171 ms
55,560 KB
testcase_14 AC 174 ms
57,232 KB
testcase_15 AC 166 ms
57,892 KB
testcase_16 AC 81 ms
54,012 KB
testcase_17 AC 83 ms
53,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int[] a = nia(n);

        ArrayList<Integer> list = new ArrayList<>();

        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < n - 1 - i; j++) {
                if (a[j] > a[j + 1]) {
                    list.add(j);
                    int tmp = a[j];
                    a[j] = a[j + 1];
                    a[j + 1] = tmp;
                }
            }
        }

        out.println(list.size());
        for (int i = 0; i < list.size(); i++) {
            out.println(list.get(i) + " " + (list.get(i) + 1));
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0