結果

問題 No.241 出席番号(1)
ユーザー GrenacheGrenache
提出日時 2015-07-12 20:10:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-30 21:30:35
合計ジャッジ時間 8,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,396 KB
testcase_01 AC 122 ms
41,268 KB
testcase_02 AC 109 ms
39,952 KB
testcase_03 AC 112 ms
41,072 KB
testcase_04 AC 117 ms
40,616 KB
testcase_05 AC 118 ms
41,316 KB
testcase_06 AC 112 ms
41,240 KB
testcase_07 AC 118 ms
41,404 KB
testcase_08 AC 117 ms
41,168 KB
testcase_09 AC 110 ms
40,548 KB
testcase_10 AC 117 ms
41,380 KB
testcase_11 AC 112 ms
41,240 KB
testcase_12 AC 111 ms
40,388 KB
testcase_13 AC 115 ms
41,168 KB
testcase_14 AC 126 ms
41,728 KB
testcase_15 AC 130 ms
41,404 KB
testcase_16 AC 114 ms
41,404 KB
testcase_17 AC 115 ms
41,160 KB
testcase_18 AC 104 ms
39,848 KB
testcase_19 AC 116 ms
41,012 KB
testcase_20 AC 114 ms
41,308 KB
testcase_21 AC 119 ms
41,344 KB
testcase_22 AC 114 ms
41,112 KB
testcase_23 AC 124 ms
41,412 KB
testcase_24 AC 109 ms
39,936 KB
testcase_25 AC 126 ms
41,288 KB
testcase_26 AC 128 ms
41,380 KB
testcase_27 AC 122 ms
41,152 KB
testcase_28 AC 125 ms
41,008 KB
testcase_29 AC 148 ms
40,924 KB
testcase_30 AC 125 ms
41,304 KB
testcase_31 AC 119 ms
41,044 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