結果

問題 No.397 NO MORE KADOMATSU
ユーザー Mcpu3Mcpu3
提出日時 2018-09-19 16:14:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 79,516 KB
実行使用メモリ 72,784 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 01:54:49
合計ジャッジ時間 6,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
71,452 KB
testcase_01 AC 144 ms
71,288 KB
testcase_02 AC 135 ms
69,960 KB
testcase_03 AC 205 ms
72,076 KB
testcase_04 AC 152 ms
71,496 KB
testcase_05 AC 199 ms
71,812 KB
testcase_06 AC 232 ms
71,752 KB
testcase_07 AC 229 ms
72,784 KB
testcase_08 AC 170 ms
71,520 KB
testcase_09 AC 147 ms
70,536 KB
testcase_10 AC 385 ms
71,788 KB
testcase_11 AC 154 ms
70,540 KB
testcase_12 AC 273 ms
71,588 KB
testcase_13 AC 287 ms
72,016 KB
testcase_14 AC 296 ms
72,400 KB
testcase_15 AC 289 ms
71,936 KB
testcase_16 AC 144 ms
70,752 KB
testcase_17 AC 137 ms
70,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static int b1(int n,int a[]){
        int s=0;
        for(int i=0;i<n-1;++i){
            for(int j=n-1;j>i;--j){
                if(a[j-1]>a[j]){
                    int t=a[j-1];
                    a[j-1]=a[j];
                    a[j]=t;
                    ++s;
                }
            }
        }
        return s;
    }

    public static void b2(int n,int a[]){
        for(int i=0;i<n-1;++i){
            for(int j=n-1;j>i;--j){
                if(a[j-1]>a[j]){
                    int t=a[j-1];
                    a[j-1]=a[j];
                    a[j]=t;
                    System.out.println(j-1+" "+j);
                }
            }
        }
    }

    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt(),a[][]=new int[2][n];
        for(int i=0;i<n;++i){
            a[0][i]=sc.nextInt();
            a[1][i]=a[0][i];
        }
        sc.close();
        System.out.println(b1(n,a[0]));
        b2(n,a[1]);
        System.out.flush();
    }
}
0