結果

問題 No.397 NO MORE KADOMATSU
ユーザー ぴろずぴろず
提出日時 2016-07-15 22:38:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 72,068 KB
平均クエリ数 36.83
最終ジャッジ日時 2024-07-17 00:03:34
合計ジャッジ時間 6,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
71,220 KB
testcase_01 AC 182 ms
71,028 KB
testcase_02 AC 135 ms
69,224 KB
testcase_03 AC 179 ms
71,572 KB
testcase_04 AC 161 ms
71,520 KB
testcase_05 AC 183 ms
71,476 KB
testcase_06 AC 161 ms
71,364 KB
testcase_07 AC 188 ms
71,464 KB
testcase_08 AC 169 ms
70,856 KB
testcase_09 AC 155 ms
70,004 KB
testcase_10 AC 177 ms
71,640 KB
testcase_11 AC 155 ms
70,580 KB
testcase_12 AC 184 ms
71,628 KB
testcase_13 AC 194 ms
71,948 KB
testcase_14 AC 199 ms
72,068 KB
testcase_15 AC 197 ms
71,404 KB
testcase_16 AC 136 ms
69,344 KB
testcase_17 AC 146 ms
70,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no397;

import java.util.ArrayList;
import java.util.Scanner;

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<Query> al = new ArrayList<>();
		for(int i=0;i<n;i++) {
			int min = 10000;
			int minj = -1;
			for(int j=i;j<n;j++) {
				if (a[j] < min) {
					min = a[j];
					minj = j;
				}
			}
			if (i != minj) {
				int temp = a[i];
				a[i] = a[minj];
				a[minj] = temp;
				al.add(new Query(i,minj));
			}
		}
		System.out.println(al.size());
		for(Query q:al) {
			System.out.println(q.i + " " + q.j);
		}
		sc.nextInt();
	}
	

}

class Query {
	int i,j;

	public Query(int i, int j) {
		super();
		this.i = i;
		this.j = j;
	}
	
}
0