結果

問題 No.241 出席番号(1)
ユーザー ぴろずぴろず
提出日時 2015-07-10 22:47:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 2,746 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-05-08 00:09:22
合計ジャッジ時間 7,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,200 KB
testcase_01 AC 129 ms
41,332 KB
testcase_02 AC 123 ms
41,380 KB
testcase_03 AC 126 ms
41,112 KB
testcase_04 AC 131 ms
41,608 KB
testcase_05 AC 128 ms
41,104 KB
testcase_06 AC 131 ms
41,544 KB
testcase_07 AC 123 ms
41,504 KB
testcase_08 AC 128 ms
41,584 KB
testcase_09 AC 126 ms
41,208 KB
testcase_10 AC 127 ms
41,304 KB
testcase_11 AC 122 ms
41,760 KB
testcase_12 AC 128 ms
41,372 KB
testcase_13 AC 132 ms
41,384 KB
testcase_14 AC 134 ms
41,380 KB
testcase_15 AC 136 ms
41,732 KB
testcase_16 AC 125 ms
41,676 KB
testcase_17 AC 125 ms
41,424 KB
testcase_18 AC 114 ms
41,456 KB
testcase_19 AC 127 ms
41,392 KB
testcase_20 AC 132 ms
41,436 KB
testcase_21 AC 126 ms
41,360 KB
testcase_22 AC 126 ms
41,224 KB
testcase_23 AC 114 ms
41,252 KB
testcase_24 AC 133 ms
41,620 KB
testcase_25 AC 141 ms
41,820 KB
testcase_26 AC 138 ms
41,560 KB
testcase_27 AC 135 ms
41,480 KB
testcase_28 AC 137 ms
41,608 KB
testcase_29 AC 139 ms
41,524 KB
testcase_30 AC 138 ms
41,332 KB
testcase_31 AC 131 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no241;

import java.util.Scanner;

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[] id = new int[n];
		for(int i=0;i<n;i++) {
			id[i] = i;
		}
		for(int i=0;i<n;i++) {
			if (a[i] != id[i]) {
				continue;
			}
			boolean flag = false;
			for(int j=0;j<n;j++) {
				if (i == j) {
					continue;
				}
				if (a[i] != id[j] && a[j] != id[i]) {
					int temp = id[i];
					id[i] = id[j];
					id[j] = temp;
					flag = true;
					break;
				}
			}
			if (!flag) {
				System.out.println(-1);
				return;
			}
		}
		for(int i=0;i<n;i++) {
			System.out.println(id[i]);
		}
	}


}
0