結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2023-04-19 14:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 2,371 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 92,616 KB
実行使用メモリ 103,336 KB
最終ジャッジ日時 2024-10-14 14:19:12
合計ジャッジ時間 18,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,292 KB
testcase_01 AC 58 ms
50,200 KB
testcase_02 AC 58 ms
50,228 KB
testcase_03 AC 57 ms
50,044 KB
testcase_04 AC 56 ms
50,028 KB
testcase_05 AC 79 ms
51,164 KB
testcase_06 AC 122 ms
52,324 KB
testcase_07 AC 66 ms
50,660 KB
testcase_08 AC 106 ms
52,068 KB
testcase_09 AC 105 ms
52,348 KB
testcase_10 AC 84 ms
51,840 KB
testcase_11 AC 79 ms
51,140 KB
testcase_12 AC 790 ms
86,424 KB
testcase_13 AC 880 ms
92,716 KB
testcase_14 AC 898 ms
101,936 KB
testcase_15 AC 854 ms
101,988 KB
testcase_16 AC 731 ms
85,280 KB
testcase_17 AC 839 ms
102,072 KB
testcase_18 AC 960 ms
103,336 KB
testcase_19 AC 896 ms
100,312 KB
testcase_20 AC 849 ms
100,436 KB
testcase_21 AC 282 ms
60,480 KB
testcase_22 AC 213 ms
57,812 KB
testcase_23 AC 908 ms
89,024 KB
testcase_24 AC 920 ms
90,472 KB
testcase_25 AC 563 ms
80,876 KB
testcase_26 AC 332 ms
62,604 KB
testcase_27 AC 854 ms
90,268 KB
testcase_28 AC 596 ms
80,908 KB
testcase_29 AC 198 ms
58,000 KB
testcase_30 AC 617 ms
80,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<ArrayList<String>> names = new ArrayList<>();
        HashMap<String, Integer> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            char[] values = sc.next().toCharArray();
            ArrayList<String> current = new ArrayList<>();
            for (int j = 0; j < values.length; j++) {
                char tmp = values[j];
                values[j] = '?';
                String s = new String(values);
                current.add(s);
                counts.put(s, counts.getOrDefault(s, 0) + 1);
                values[j] = tmp;
            }
            names.add(current);
        }
        StringBuilder sb = new StringBuilder();
        for (ArrayList<String> current : names) {
            int ans = 0;
            for (String x : current) {
                ans += counts.get(x) - 1;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0