結果

問題 No.241 出席番号(1)
ユーザー 37zigen37zigen
提出日時 2020-03-30 03:48:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,165 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 78,088 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-10 19:46:42
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,120 KB
testcase_01 AC 110 ms
41,384 KB
testcase_02 AC 106 ms
40,116 KB
testcase_03 AC 98 ms
40,220 KB
testcase_04 AC 117 ms
41,216 KB
testcase_05 AC 108 ms
41,204 KB
testcase_06 AC 107 ms
40,920 KB
testcase_07 AC 105 ms
40,928 KB
testcase_08 AC 108 ms
41,240 KB
testcase_09 AC 99 ms
39,924 KB
testcase_10 AC 100 ms
40,060 KB
testcase_11 AC 112 ms
41,240 KB
testcase_12 AC 111 ms
41,220 KB
testcase_13 AC 104 ms
40,104 KB
testcase_14 AC 109 ms
40,112 KB
testcase_15 AC 117 ms
41,168 KB
testcase_16 AC 101 ms
39,916 KB
testcase_17 AC 99 ms
40,348 KB
testcase_18 AC 111 ms
41,316 KB
testcase_19 AC 115 ms
41,696 KB
testcase_20 AC 96 ms
40,060 KB
testcase_21 AC 112 ms
41,232 KB
testcase_22 AC 108 ms
40,192 KB
testcase_23 AC 119 ms
41,048 KB
testcase_24 AC 123 ms
41,472 KB
testcase_25 AC 110 ms
40,308 KB
testcase_26 AC 110 ms
40,184 KB
testcase_27 AC 119 ms
41,352 KB
testcase_28 AC 119 ms
41,220 KB
testcase_29 AC 107 ms
40,308 KB
testcase_30 AC 121 ms
41,212 KB
testcase_31 AC 110 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	int target(int[] A,int[] ans) {
		int p=0;
		while(p<ans.length&&(ans[p]!=-1||A[p]==-1))++p;
		if(p<ans.length)return A[p];
		else {
			for(int i=0;i<A.length;++i) {
				boolean flag=true;
				for(int j=0;j<ans.length;++j)flag&=ans[j]!=i;
				if(flag)return i;
			}
			throw new AssertionError();
		}
	}
	
	void run() {
		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();
			if(!(0<=A[i]&&A[i]<N))A[i]=-1;
		}
		boolean ng=true;
		for(int i=0;i<N;++i)ng&=A[i]==A[0];
		ng&=0<=A[0]&&A[0]<N;
		if(ng) {
			System.out.println(-1);
			return;
		}
		int[] ans=new int[N];
		Arrays.fill(ans, -1);
		for(int i=0;i<N;++i) {
			int target=target(A, ans);//targetを誰かに塗る
			int p=0;
			while(A[p]==target||ans[p]!=-1)++p;
			ans[p]=target;
			for(int j=0;j<N;++j)if(ans[j]==-1&&A[j]==target)A[j]=-1;
		}
		for(int i=0;i<N;++i)System.out.println(ans[i]);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0