結果

問題 No.1468 Colourful Pastel
ユーザー tentententen
提出日時 2021-04-13 12:44:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 298 ms / 1,000 ms
コード長 1,293 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 78,124 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2024-06-29 13:31:13
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
56,288 KB
testcase_01 AC 278 ms
56,292 KB
testcase_02 AC 48 ms
36,696 KB
testcase_03 AC 50 ms
36,952 KB
testcase_04 AC 51 ms
36,936 KB
testcase_05 AC 47 ms
36,968 KB
testcase_06 AC 49 ms
36,880 KB
testcase_07 AC 49 ms
37,092 KB
testcase_08 AC 49 ms
36,532 KB
testcase_09 AC 48 ms
36,988 KB
testcase_10 AC 47 ms
36,796 KB
testcase_11 AC 47 ms
36,892 KB
testcase_12 AC 47 ms
36,896 KB
testcase_13 AC 48 ms
37,116 KB
testcase_14 AC 47 ms
36,944 KB
testcase_15 AC 48 ms
36,884 KB
testcase_16 AC 47 ms
36,932 KB
testcase_17 AC 47 ms
37,096 KB
testcase_18 AC 48 ms
37,224 KB
testcase_19 AC 48 ms
37,024 KB
testcase_20 AC 47 ms
37,096 KB
testcase_21 AC 48 ms
36,784 KB
testcase_22 AC 48 ms
36,580 KB
testcase_23 AC 51 ms
37,080 KB
testcase_24 AC 51 ms
36,540 KB
testcase_25 AC 49 ms
36,764 KB
testcase_26 AC 49 ms
36,800 KB
testcase_27 AC 268 ms
46,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        HashMap<String, Integer> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            String name = sc.next();
            counts.put(name, counts.getOrDefault(name, 0) + 1);
        }
        for (int i = 0; i < n - 1; i++) {
            String name = sc.next();
            counts.put(name, counts.get(name) - 1);
        }
        for (String x : counts.keySet()) {
            if (counts.get(x) == 1) {
                System.out.println(x);
                return;
            }
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0