結果
問題 | No.1468 Colourful Pastel |
ユーザー | tenten |
提出日時 | 2024-07-04 14:14:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 310 ms / 1,000 ms |
コード長 | 1,545 bytes |
コンパイル時間 | 3,122 ms |
コンパイル使用メモリ | 83,548 KB |
実行使用メモリ | 47,528 KB |
最終ジャッジ日時 | 2024-07-04 14:14:19 |
合計ジャッジ時間 | 7,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 305 ms
45,948 KB |
testcase_01 | AC | 310 ms
46,296 KB |
testcase_02 | AC | 64 ms
37,800 KB |
testcase_03 | AC | 64 ms
37,792 KB |
testcase_04 | AC | 67 ms
37,580 KB |
testcase_05 | AC | 63 ms
37,560 KB |
testcase_06 | AC | 64 ms
37,744 KB |
testcase_07 | AC | 60 ms
37,508 KB |
testcase_08 | AC | 61 ms
37,516 KB |
testcase_09 | AC | 62 ms
37,784 KB |
testcase_10 | AC | 64 ms
37,968 KB |
testcase_11 | AC | 59 ms
37,760 KB |
testcase_12 | AC | 64 ms
37,652 KB |
testcase_13 | AC | 62 ms
37,912 KB |
testcase_14 | AC | 57 ms
37,336 KB |
testcase_15 | AC | 61 ms
37,480 KB |
testcase_16 | AC | 59 ms
37,592 KB |
testcase_17 | AC | 62 ms
37,456 KB |
testcase_18 | AC | 62 ms
37,620 KB |
testcase_19 | AC | 67 ms
37,740 KB |
testcase_20 | AC | 63 ms
37,620 KB |
testcase_21 | AC | 64 ms
37,852 KB |
testcase_22 | AC | 58 ms
37,468 KB |
testcase_23 | AC | 61 ms
37,428 KB |
testcase_24 | AC | 60 ms
37,244 KB |
testcase_25 | AC | 55 ms
37,304 KB |
testcase_26 | AC | 60 ms
37,848 KB |
testcase_27 | AC | 296 ms
47,528 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); Map<String, Integer> counts = new HashMap<>(); for (int i = 0; i < n; i++) { String name = sc.next(); counts.put(name, counts.getOrDefault(name, 0) + 1); } while (n-- > 1) { String name = sc.next(); counts.put(name, counts.get(name) - 1); } System.out.println(counts.keySet().stream().filter(x -> counts.get(x) == 1).findFirst().orElse("")); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }