結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | YamaKasa |
提出日時 | 2018-09-19 16:36:30 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 911 bytes |
コンパイル時間 | 2,354 ms |
コンパイル使用メモリ | 79,460 KB |
実行使用メモリ | 84,988 KB |
最終ジャッジ日時 | 2024-07-16 16:09:48 |
合計ジャッジ時間 | 8,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
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() / 2; i += 2) { System.out.print(list.get(i) + " " + list.get(i + 1)); } 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); } } } } }