結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2022-08-10 12:01:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 987 ms / 2,000 ms
コード長 1,811 bytes
コンパイル時間 2,479 ms
コンパイル使用メモリ 79,184 KB
実行使用メモリ 90,520 KB
最終ジャッジ日時 2024-09-20 16:10:32
合計ジャッジ時間 18,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,820 KB
testcase_01 AC 53 ms
37,184 KB
testcase_02 AC 53 ms
37,244 KB
testcase_03 AC 54 ms
36,820 KB
testcase_04 AC 54 ms
36,664 KB
testcase_05 AC 87 ms
38,504 KB
testcase_06 AC 113 ms
39,708 KB
testcase_07 AC 61 ms
37,428 KB
testcase_08 AC 104 ms
39,112 KB
testcase_09 AC 116 ms
39,968 KB
testcase_10 AC 91 ms
38,428 KB
testcase_11 AC 73 ms
38,516 KB
testcase_12 AC 838 ms
77,032 KB
testcase_13 AC 890 ms
82,292 KB
testcase_14 AC 987 ms
90,520 KB
testcase_15 AC 861 ms
88,528 KB
testcase_16 AC 736 ms
73,548 KB
testcase_17 AC 828 ms
87,660 KB
testcase_18 AC 841 ms
87,908 KB
testcase_19 AC 890 ms
87,808 KB
testcase_20 AC 893 ms
87,908 KB
testcase_21 AC 284 ms
49,652 KB
testcase_22 AC 205 ms
46,128 KB
testcase_23 AC 920 ms
79,184 KB
testcase_24 AC 906 ms
79,016 KB
testcase_25 AC 607 ms
70,116 KB
testcase_26 AC 325 ms
62,500 KB
testcase_27 AC 914 ms
81,448 KB
testcase_28 AC 606 ms
70,556 KB
testcase_29 AC 201 ms
45,712 KB
testcase_30 AC 621 ms
69,528 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>> strings = new ArrayList<>();
        while(n-- > 0) {
            char[] values = sc.next().toCharArray();
            ArrayList<String> each = new ArrayList<>();
            for (int i = 0; i < values.length; i++) {
                char tmp = values[i];
                values[i] = '?';
                String current = new String(values);
                values[i] = tmp;
                each.add(current);
                counts.put(current, counts.getOrDefault(current, 0) + 1);
            }
            strings.add(each);
        }
        StringBuilder sb = new StringBuilder();
        for (ArrayList<String> tmp : strings) {
            int ans = 0;
            for (String x : tmp) {
                ans += counts.get(x) - 1;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}

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 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