結果

問題 No.938 賢人を探せ
ユーザー 37zigen37zigen
提出日時 2019-12-12 22:23:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-05-08 09:07:27
合計ジャッジ時間 9,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
52,608 KB
testcase_01 AC 109 ms
40,180 KB
testcase_02 AC 126 ms
41,288 KB
testcase_03 AC 148 ms
41,368 KB
testcase_04 AC 128 ms
41,556 KB
testcase_05 AC 124 ms
41,340 KB
testcase_06 AC 124 ms
41,144 KB
testcase_07 AC 127 ms
41,136 KB
testcase_08 AC 292 ms
49,756 KB
testcase_09 AC 296 ms
49,784 KB
testcase_10 AC 127 ms
41,352 KB
testcase_11 AC 343 ms
50,344 KB
testcase_12 AC 350 ms
48,796 KB
testcase_13 AC 350 ms
49,192 KB
testcase_14 AC 357 ms
50,088 KB
testcase_15 AC 351 ms
50,164 KB
testcase_16 AC 347 ms
50,144 KB
testcase_17 AC 346 ms
50,036 KB
testcase_18 AC 361 ms
50,204 KB
testcase_19 AC 349 ms
50,164 KB
testcase_20 AC 339 ms
49,940 KB
testcase_21 AC 356 ms
49,992 KB
testcase_22 AC 483 ms
51,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
	 	Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		HashSet<String> set=new HashSet<>();
		HashSet<String> ans=new HashSet<>();

		String[] A=new String[N];
		String[] B=new String[N];
		for(int i=0;i<N;++i){
			A[i]=sc.next();
			B[i]=sc.next();
			set.add(A[i]);
		}
		for(int i=0;i<N;++i){
			if(!set.contains(A[i])&&!ans.contains(A[i])){
				System.out.println(A[i]);
				ans.add(A[i]);
			}
			if(!set.contains(B[i])&&!ans.contains(B[i])){
				System.out.println(B[i]);
				ans.add(B[i]);
			}
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0