結果

問題 No.241 出席番号(1)
ユーザー 37zigen37zigen
提出日時 2020-03-30 03:48:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,165 bytes
コンパイル時間 4,077 ms
コンパイル使用メモリ 85,948 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2025-01-02 16:18:48
合計ジャッジ時間 9,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,136 KB
testcase_01 AC 115 ms
54,264 KB
testcase_02 AC 113 ms
54,272 KB
testcase_03 AC 113 ms
54,004 KB
testcase_04 AC 117 ms
54,332 KB
testcase_05 AC 116 ms
54,272 KB
testcase_06 AC 113 ms
54,276 KB
testcase_07 AC 113 ms
54,336 KB
testcase_08 AC 109 ms
54,136 KB
testcase_09 AC 114 ms
54,272 KB
testcase_10 AC 119 ms
54,276 KB
testcase_11 AC 116 ms
54,264 KB
testcase_12 AC 116 ms
54,400 KB
testcase_13 AC 116 ms
54,140 KB
testcase_14 AC 121 ms
54,512 KB
testcase_15 AC 117 ms
53,868 KB
testcase_16 AC 115 ms
54,128 KB
testcase_17 AC 121 ms
54,292 KB
testcase_18 AC 115 ms
54,344 KB
testcase_19 AC 115 ms
54,140 KB
testcase_20 AC 112 ms
54,244 KB
testcase_21 AC 113 ms
54,348 KB
testcase_22 AC 112 ms
54,344 KB
testcase_23 AC 122 ms
54,400 KB
testcase_24 AC 124 ms
54,256 KB
testcase_25 AC 127 ms
54,192 KB
testcase_26 AC 126 ms
54,372 KB
testcase_27 AC 115 ms
54,272 KB
testcase_28 AC 122 ms
54,380 KB
testcase_29 AC 125 ms
54,256 KB
testcase_30 AC 120 ms
54,136 KB
testcase_31 AC 123 ms
54,212 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