結果

問題 No.397 NO MORE KADOMATSU
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 16:44:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 79,412 KB
実行使用メモリ 74,792 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 01:54:58
合計ジャッジ時間 8,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
72,044 KB
testcase_01 AC 185 ms
71,480 KB
testcase_02 AC 156 ms
69,940 KB
testcase_03 AC 235 ms
71,872 KB
testcase_04 AC 187 ms
72,124 KB
testcase_05 AC 233 ms
73,840 KB
testcase_06 AC 281 ms
72,292 KB
testcase_07 AC 284 ms
71,804 KB
testcase_08 AC 213 ms
71,824 KB
testcase_09 AC 175 ms
70,632 KB
testcase_10 AC 450 ms
74,792 KB
testcase_11 AC 176 ms
70,880 KB
testcase_12 AC 312 ms
72,152 KB
testcase_13 AC 349 ms
72,344 KB
testcase_14 AC 358 ms
72,116 KB
testcase_15 AC 347 ms
71,532 KB
testcase_16 AC 166 ms
70,452 KB
testcase_17 AC 169 ms
70,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static List<Integer> list;
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[]A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		list = new ArrayList<Integer>();
		bubbleSort(A, N);
		System.out.println(list.size() / 2);
		for(int i = 0; i < list.size(); i += 2) {
			System.out.println(list.get(i) + " " + list.get(i + 1));
		}
		System.exit(0);
		int Dummy = scan.nextInt();
		scan.close();
		if(Dummy == -1) {
			System.exit(0);
		}
	}
	static void bubbleSort(int[]A, int n) {
		boolean flag = true;
		while(flag) {
			flag = false;
			for(int i = n - 1; i >= 1; i--) {
				if(A[i] < A[i - 1]) {
					int t = A[i];
					A[i] = A[i - 1];
					A[i - 1] = t;
					flag = true;
					list.add(i);
					list.add(i-1);
				}
			}
		}
	}
}
0