結果

問題 No.397 NO MORE KADOMATSU
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:48:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 4,021 ms
コンパイル使用メモリ 79,868 KB
実行使用メモリ 73,348 KB
平均クエリ数 36.06
最終ジャッジ日時 2024-07-17 00:24:45
合計ジャッジ時間 7,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
71,116 KB
testcase_01 AC 170 ms
71,664 KB
testcase_02 AC 179 ms
70,928 KB
testcase_03 AC 186 ms
71,764 KB
testcase_04 AC 156 ms
71,020 KB
testcase_05 AC 189 ms
71,608 KB
testcase_06 AC 156 ms
71,272 KB
testcase_07 AC 189 ms
71,528 KB
testcase_08 AC 156 ms
71,344 KB
testcase_09 AC 158 ms
69,992 KB
testcase_10 AC 153 ms
70,200 KB
testcase_11 AC 152 ms
70,592 KB
testcase_12 AC 187 ms
73,348 KB
testcase_13 AC 183 ms
71,416 KB
testcase_14 AC 189 ms
71,312 KB
testcase_15 AC 181 ms
71,708 KB
testcase_16 AC 159 ms
71,228 KB
testcase_17 AC 163 ms
71,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), max, idx = 0, tmp;
		int[] m = new int[n];
		int[][] ans = new int[n][2];
		for (int i = 0; i < n; i++) {
			m[i] = sc.nextInt();
		}
		for (int i = 0; i < n - 1; i++) {
			max = i;
			for (int j = i + 1; j < n; j++) {
				if (m[max] < m[j]) {
					max = j;
				}
			}
			if (i != max) {
				ans[idx][0] = i;
				ans[idx][1] = max;
				idx++;
				tmp = m[i];
				m[i] = m[max];
				m[max] = tmp;
			}
		}
		System.out.println(idx);
		for (int i = 0; i < idx; i++) {
			System.out.println(ans[i][0] + " " + ans[i][1]);
		}
		int p = sc.nextInt();
	}
}
0