結果

問題 No.938 賢人を探せ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-12-04 11:22:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 81,120 KB
実行使用メモリ 48,260 KB
最終ジャッジ日時 2024-05-08 09:01:41
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
48,260 KB
testcase_01 AC 59 ms
37,244 KB
testcase_02 AC 59 ms
37,060 KB
testcase_03 AC 57 ms
37,376 KB
testcase_04 AC 56 ms
37,384 KB
testcase_05 AC 57 ms
37,268 KB
testcase_06 AC 57 ms
37,456 KB
testcase_07 AC 56 ms
37,056 KB
testcase_08 AC 194 ms
45,868 KB
testcase_09 AC 190 ms
45,808 KB
testcase_10 AC 55 ms
37,328 KB
testcase_11 AC 228 ms
45,996 KB
testcase_12 AC 203 ms
46,192 KB
testcase_13 AC 201 ms
46,100 KB
testcase_14 AC 201 ms
45,928 KB
testcase_15 AC 203 ms
46,200 KB
testcase_16 AC 203 ms
46,180 KB
testcase_17 AC 205 ms
45,880 KB
testcase_18 AC 205 ms
46,160 KB
testcase_19 AC 205 ms
46,016 KB
testcase_20 AC 204 ms
46,252 KB
testcase_21 AC 204 ms
46,120 KB
testcase_22 AC 243 ms
47,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _938;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;

public class Main {
    public void solve(BufferedReader stdin, PrintWriter stdout) throws NumberFormatException, IOException {
        Pattern space = Pattern.compile(" ");

        int n = Integer.parseInt(stdin.readLine());
        String[] a = new String[n];
        String[] b = new String[n];
        for (int i = 0; i < n; i++) {
            String[] line = space.split(stdin.readLine());
            a[i] = line[0];
            b[i] = line[1];
        }

        Map<String, String> d = new HashMap<>();
        for (int i = 0; i < n; i++) {
            d.put(a[i], b[i]);
        }

        Set<String> answers = new LinkedHashSet<>();
        for (int i = 0; i < n; i++) {
            if (d.get(b[i]) == null) {
                answers.add(b[i]);
            }
        }

        answers.forEach(stdout::println);
    }

    public static void main(String[] args) throws NumberFormatException, IOException {
        BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
        PrintWriter stdout = new PrintWriter(System.out, false);
        new Main().solve(stdin, stdout);
        stdout.flush();
    }
}
0