結果

問題 No.938 賢人を探せ
ユーザー tentententen
提出日時 2020-08-26 18:34:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 3,010 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 61,792 KB
最終ジャッジ日時 2024-12-14 12:00:42
合計ジャッジ時間 10,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 409 ms
61,792 KB
testcase_01 AC 135 ms
54,044 KB
testcase_02 AC 135 ms
54,028 KB
testcase_03 AC 136 ms
54,088 KB
testcase_04 AC 139 ms
54,228 KB
testcase_05 AC 135 ms
54,476 KB
testcase_06 AC 134 ms
54,148 KB
testcase_07 AC 137 ms
54,152 KB
testcase_08 AC 306 ms
61,080 KB
testcase_09 AC 297 ms
61,188 KB
testcase_10 AC 136 ms
54,184 KB
testcase_11 AC 354 ms
61,412 KB
testcase_12 AC 318 ms
61,156 KB
testcase_13 AC 316 ms
61,128 KB
testcase_14 AC 319 ms
61,112 KB
testcase_15 AC 319 ms
61,228 KB
testcase_16 AC 309 ms
61,300 KB
testcase_17 AC 326 ms
61,044 KB
testcase_18 AC 323 ms
61,328 KB
testcase_19 AC 312 ms
61,240 KB
testcase_20 AC 321 ms
61,284 KB
testcase_21 AC 321 ms
61,248 KB
testcase_22 AC 348 ms
61,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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