結果

問題 No.397 NO MORE KADOMATSU
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-18 03:04:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 4,253 ms
コンパイル使用メモリ 80,128 KB
実行使用メモリ 73,476 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 01:46:48
合計ジャッジ時間 8,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
71,268 KB
testcase_01 AC 163 ms
71,416 KB
testcase_02 AC 128 ms
69,724 KB
testcase_03 AC 198 ms
73,160 KB
testcase_04 AC 158 ms
71,576 KB
testcase_05 AC 211 ms
73,476 KB
testcase_06 AC 223 ms
71,156 KB
testcase_07 AC 254 ms
71,612 KB
testcase_08 AC 167 ms
71,492 KB
testcase_09 AC 147 ms
70,696 KB
testcase_10 AC 395 ms
71,948 KB
testcase_11 AC 137 ms
70,736 KB
testcase_12 AC 265 ms
71,972 KB
testcase_13 AC 292 ms
72,220 KB
testcase_14 AC 304 ms
71,908 KB
testcase_15 AC 298 ms
71,888 KB
testcase_16 AC 130 ms
69,288 KB
testcase_17 AC 130 ms
69,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No397{
	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 M = 0;
		int[][] uv = new int[N*N][2];
		for(int i = 0; i < N; i++){
			for(int j = 0; j < N - 1 - i; j++){
				if(A[j] > A[j+1]){
					int tmp = A[j];
					A[j] = A[j+1];
					A[j+1] = tmp;
					uv[M][0] = j;
					uv[M][1] = j+1;
					M++;
				}
			}
		}
		System.out.println(M);
		for(int i = 0; i < M; i++){
			System.out.println(uv[i][0] + " " + uv[i][1]);
		}
		int a = sc.nextInt();

	}
}
0