結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-16 15:39:12 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 957 bytes |
コンパイル時間 | 2,607 ms |
コンパイル使用メモリ | 79,912 KB |
実行使用メモリ | 72,024 KB |
平均クエリ数 | 57.78 |
最終ジャッジ日時 | 2024-07-16 11:20:31 |
合計ジャッジ時間 | 8,776 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 186 ms
71,208 KB |
testcase_01 | AC | 187 ms
70,804 KB |
testcase_02 | RE | - |
testcase_03 | AC | 219 ms
71,376 KB |
testcase_04 | AC | 182 ms
71,576 KB |
testcase_05 | AC | 195 ms
71,460 KB |
testcase_06 | AC | 198 ms
71,592 KB |
testcase_07 | AC | 193 ms
71,224 KB |
testcase_08 | RE | - |
testcase_09 | AC | 219 ms
71,560 KB |
testcase_10 | RE | - |
testcase_11 | AC | 217 ms
71,736 KB |
testcase_12 | AC | 211 ms
71,652 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 190 ms
71,264 KB |
ソースコード
import java.util.*; 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(); } int c=0; int [][] exchange = new int [2][N]; for(int i=0; i<N; i++){ int max=0; for(int j=i+1; j<N; j++){ max=Math.max(max,A[j]); } for(int j=i+1; j<N; j++){ if(max==A[j]){ A[j]=A[i]; A[i]=max; exchange[0][c]=i; exchange[1][c]=j; c++; break; } } } System.out.println(c); for(int i=0; i<c; i++){ System.out.println(exchange[0][i]+" "+exchange[1][i]); } int Dummy = sc.nextInt(); } }