結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2022-09-27 10:15:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 1,843 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 90,776 KB
最終ジャッジ日時 2024-06-02 00:54:24
合計ジャッジ時間 14,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,060 KB
testcase_01 AC 51 ms
37,220 KB
testcase_02 AC 51 ms
36,804 KB
testcase_03 AC 50 ms
37,384 KB
testcase_04 AC 51 ms
36,816 KB
testcase_05 AC 81 ms
38,300 KB
testcase_06 AC 101 ms
39,748 KB
testcase_07 AC 55 ms
37,472 KB
testcase_08 AC 95 ms
39,404 KB
testcase_09 AC 93 ms
40,100 KB
testcase_10 AC 83 ms
39,020 KB
testcase_11 AC 78 ms
38,652 KB
testcase_12 AC 636 ms
76,800 KB
testcase_13 AC 746 ms
90,244 KB
testcase_14 AC 710 ms
90,776 KB
testcase_15 AC 669 ms
88,964 KB
testcase_16 AC 542 ms
74,192 KB
testcase_17 AC 596 ms
88,472 KB
testcase_18 AC 700 ms
90,408 KB
testcase_19 AC 748 ms
87,712 KB
testcase_20 AC 680 ms
87,856 KB
testcase_21 AC 225 ms
50,100 KB
testcase_22 AC 163 ms
46,836 KB
testcase_23 AC 668 ms
79,224 KB
testcase_24 AC 638 ms
78,788 KB
testcase_25 AC 451 ms
69,784 KB
testcase_26 AC 253 ms
52,988 KB
testcase_27 AC 612 ms
79,908 KB
testcase_28 AC 457 ms
70,476 KB
testcase_29 AC 170 ms
46,324 KB
testcase_30 AC 503 ms
69,924 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<>();
        ArrayList<ArrayList<String>> names = new ArrayList<>();
        while (n-- > 0) {
            char[] inputs = sc.next().toCharArray();
            ArrayList<String> eachName = new ArrayList<>();
            for (int i = 0; i < inputs.length; i++) {
                char tmp = inputs[i];
                inputs[i] = '?';
                String x = new String(inputs);
                inputs[i] = tmp;
                counts.put(x, counts.getOrDefault(x, 0) + 1);
                eachName.add(x);
            }
            names.add(eachName);
        }
        StringBuilder sb = new StringBuilder();
        for (ArrayList<String> x : names) {
            int ans = 0;
            for (String y : x) {
                ans += counts.get(y) - 1;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0