結果

問題 No.241 出席番号(1)
ユーザー tentententen
提出日時 2020-10-27 19:08:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,401 bytes
コンパイル時間 3,261 ms
コンパイル使用メモリ 85,152 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-07-21 21:59:22
合計ジャッジ時間 8,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,336 KB
testcase_01 AC 126 ms
41,244 KB
testcase_02 AC 127 ms
41,660 KB
testcase_03 AC 128 ms
41,116 KB
testcase_04 AC 130 ms
41,240 KB
testcase_05 AC 127 ms
41,256 KB
testcase_06 AC 113 ms
41,804 KB
testcase_07 AC 129 ms
41,456 KB
testcase_08 AC 128 ms
41,344 KB
testcase_09 AC 125 ms
41,412 KB
testcase_10 AC 119 ms
41,480 KB
testcase_11 AC 124 ms
41,356 KB
testcase_12 AC 126 ms
41,184 KB
testcase_13 AC 122 ms
41,496 KB
testcase_14 AC 132 ms
41,248 KB
testcase_15 AC 130 ms
41,592 KB
testcase_16 AC 113 ms
41,384 KB
testcase_17 AC 125 ms
41,224 KB
testcase_18 AC 124 ms
41,100 KB
testcase_19 AC 112 ms
41,816 KB
testcase_20 AC 118 ms
41,136 KB
testcase_21 AC 125 ms
41,712 KB
testcase_22 AC 124 ms
41,420 KB
testcase_23 AC 128 ms
41,092 KB
testcase_24 AC 132 ms
41,176 KB
testcase_25 AC 130 ms
41,416 KB
testcase_26 AC 128 ms
41,660 KB
testcase_27 AC 133 ms
41,256 KB
testcase_28 AC 131 ms
41,568 KB
testcase_29 AC 133 ms
41,712 KB
testcase_30 AC 131 ms
41,392 KB
testcase_31 AC 128 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int[] ans = new int[n];
        HashSet<Integer> set = new HashSet<>();
        ArrayList<Integer> unmatch = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            set.add(arr[i]);
            ans[i] = i;
            if (arr[i] == i) {
                unmatch.add(i);
            }
        }
        if (set.size() == 1 && unmatch.size() != 0) {
            System.out.println(-1);
            return;
        }
        for (int i = 0; i < unmatch.size() / 2; i++) {
            int tmp = ans[unmatch.get(i * 2)];
            ans[unmatch.get(i * 2)] = ans[unmatch.get(i * 2 + 1)];
            ans[unmatch.get(i * 2 + 1)] = tmp;
        }
        if (unmatch.size() % 2 == 1) {
            int x = unmatch.get(unmatch.size() - 1);
            for (int i = 0; i < n; i++) {
                if (arr[i] != ans[x]) {
                    int tmp = ans[i];
                    ans[i] = ans[x];
                    ans[x] = tmp;
                    break;
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
       System.out.print(sb);
    }
}
0