結果

問題 No.938 賢人を探せ
ユーザー htensaihtensai
提出日時 2019-12-09 11:43:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 2,722 ms
コンパイル使用メモリ 75,856 KB
実行使用メモリ 61,556 KB
最終ジャッジ日時 2024-05-08 09:04:23
合計ジャッジ時間 10,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
61,480 KB
testcase_01 AC 144 ms
54,040 KB
testcase_02 AC 144 ms
54,232 KB
testcase_03 AC 144 ms
53,980 KB
testcase_04 AC 145 ms
54,168 KB
testcase_05 AC 143 ms
54,264 KB
testcase_06 AC 142 ms
54,372 KB
testcase_07 AC 146 ms
54,080 KB
testcase_08 AC 323 ms
61,160 KB
testcase_09 AC 332 ms
61,200 KB
testcase_10 AC 142 ms
54,272 KB
testcase_11 AC 379 ms
61,556 KB
testcase_12 AC 329 ms
61,208 KB
testcase_13 AC 336 ms
61,248 KB
testcase_14 AC 316 ms
61,248 KB
testcase_15 AC 348 ms
61,392 KB
testcase_16 AC 335 ms
61,336 KB
testcase_17 AC 337 ms
60,996 KB
testcase_18 AC 336 ms
61,436 KB
testcase_19 AC 334 ms
61,356 KB
testcase_20 AC 345 ms
61,096 KB
testcase_21 AC 338 ms
61,312 KB
testcase_22 AC 361 ms
61,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        ArrayList<String> allList = new ArrayList<>();
        HashSet<String> outSet = new HashSet<>();
        for (int i = 0; i < n; i++) {
            String a = sc.next();
            String b = sc.next();
            allList.add(b);
            outSet.add(a);
        }
        StringBuilder sb = new StringBuilder();
        HashSet<String> putSet = new HashSet<>();
        for (String s : allList) {
            if (!outSet.contains(s) && !putSet.contains(s)) {
                sb.append(s).append("\n");
                putSet.add(s);
            }
        }
        System.out.print(sb);
    }
}
0