結果

問題 No.241 出席番号(1)
ユーザー GrenacheGrenache
提出日時 2015-07-12 20:10:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 3,791 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-05-08 00:14:44
合計ジャッジ時間 9,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,492 KB
testcase_01 AC 125 ms
41,364 KB
testcase_02 AC 122 ms
41,760 KB
testcase_03 AC 126 ms
41,520 KB
testcase_04 AC 124 ms
41,652 KB
testcase_05 AC 148 ms
41,376 KB
testcase_06 AC 152 ms
41,816 KB
testcase_07 AC 128 ms
41,232 KB
testcase_08 AC 126 ms
41,796 KB
testcase_09 AC 127 ms
41,360 KB
testcase_10 AC 129 ms
41,888 KB
testcase_11 AC 127 ms
41,396 KB
testcase_12 AC 114 ms
41,480 KB
testcase_13 AC 129 ms
41,496 KB
testcase_14 AC 136 ms
41,636 KB
testcase_15 AC 138 ms
41,336 KB
testcase_16 AC 125 ms
41,556 KB
testcase_17 AC 128 ms
41,504 KB
testcase_18 AC 124 ms
41,520 KB
testcase_19 AC 126 ms
41,468 KB
testcase_20 AC 128 ms
41,504 KB
testcase_21 AC 124 ms
41,532 KB
testcase_22 AC 111 ms
41,744 KB
testcase_23 AC 132 ms
41,140 KB
testcase_24 AC 137 ms
41,624 KB
testcase_25 AC 134 ms
41,160 KB
testcase_26 AC 124 ms
41,556 KB
testcase_27 AC 125 ms
41,704 KB
testcase_28 AC 120 ms
41,344 KB
testcase_29 AC 130 ms
41,488 KB
testcase_30 AC 133 ms
41,712 KB
testcase_31 AC 134 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder241 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int[] a = new int[n];
        boolean flag = true;
        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        	if (i > 0 && a[i - 1] != a[i]) {
        		flag = false;
        	}
        }

        if (flag && a[0] < n) {
        	System.out.println(-1);
        } else {
        	int[] ret = new int[n];
        	for (int i = 0; i < n; i++) {
        		ret[i] = i;
        	}

        	for (; true;) {
        		for (int i = 0; i < n; i++) {
        			int r = i + (int)(Math.random() * (n - i));
        			int tmp = ret[i];
        			ret[i] = ret[r];
        			ret[r] = tmp;
        		}

        		boolean check = true;
        		for (int i = 0; i < n; i++) {
        			if (ret[i] == a[i]) {
        				check = false;
        				break;
        			}
        		}
        		
        		if (check) {
        			break;
        		}
        	}

        	for (int i = 0; i < n; i++) {
            	System.out.println(ret[i]);
            }
        }

        sc.close();
    }
}
0