結果

問題 No.397 NO MORE KADOMATSU
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 15:59:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 2,925 ms
コンパイル使用メモリ 87,168 KB
実行使用メモリ 73,156 KB
平均クエリ数 51.33
最終ジャッジ日時 2024-07-17 00:37:44
合計ジャッジ時間 7,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
70,872 KB
testcase_01 AC 183 ms
71,508 KB
testcase_02 AC 189 ms
71,636 KB
testcase_03 AC 209 ms
71,248 KB
testcase_04 AC 189 ms
71,400 KB
testcase_05 AC 233 ms
71,344 KB
testcase_06 AC 227 ms
71,572 KB
testcase_07 AC 225 ms
71,212 KB
testcase_08 AC 216 ms
71,192 KB
testcase_09 AC 215 ms
71,288 KB
testcase_10 AC 172 ms
70,676 KB
testcase_11 AC 208 ms
71,440 KB
testcase_12 AC 211 ms
71,776 KB
testcase_13 AC 214 ms
71,752 KB
testcase_14 AC 208 ms
71,924 KB
testcase_15 AC 202 ms
73,156 KB
testcase_16 AC 185 ms
70,952 KB
testcase_17 AC 172 ms
70,976 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();
        }
        int c=0;
        int [][] exchange = new int [2][N];
        for(int i=0; i<N; i++){
            int max=0;
            for(int j=i; j<N; j++){
                max=Math.max(max,A[j]);
            }
            for(int j=i+1; j<N; j++){
                if(max==A[j]){
                    A[j]=A[i];
                    A[i]=max;
                    exchange[0][c]=i;
                    exchange[1][c]=j;
                    c++;
                    break;
                }
            }
        }
        System.out.println(c);
        for(int i=0; i<c; i++){
            System.out.println(exchange[0][i]+" "+exchange[1][i]);
        }
        int Dummy = sc.nextInt();
    }
}
0