結果

問題 No.938 賢人を探せ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-12-04 11:22:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 3,287 ms
コンパイル使用メモリ 81,120 KB
実行使用メモリ 59,204 KB
最終ジャッジ日時 2024-12-14 11:47:43
合計ジャッジ時間 7,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
59,204 KB
testcase_01 AC 63 ms
50,764 KB
testcase_02 AC 61 ms
50,408 KB
testcase_03 AC 63 ms
50,684 KB
testcase_04 AC 66 ms
50,804 KB
testcase_05 AC 61 ms
50,576 KB
testcase_06 AC 62 ms
50,392 KB
testcase_07 AC 65 ms
50,336 KB
testcase_08 AC 191 ms
56,112 KB
testcase_09 AC 198 ms
56,204 KB
testcase_10 AC 63 ms
50,684 KB
testcase_11 AC 217 ms
56,316 KB
testcase_12 AC 211 ms
56,260 KB
testcase_13 AC 213 ms
56,412 KB
testcase_14 AC 216 ms
56,452 KB
testcase_15 AC 210 ms
56,556 KB
testcase_16 AC 209 ms
56,596 KB
testcase_17 AC 210 ms
56,456 KB
testcase_18 AC 207 ms
56,328 KB
testcase_19 AC 210 ms
56,392 KB
testcase_20 AC 205 ms
56,528 KB
testcase_21 AC 207 ms
56,324 KB
testcase_22 AC 245 ms
58,488 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