結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2022-07-11 14:36:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,385 ms / 2,000 ms
コード長 2,158 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 79,296 KB
実行使用メモリ 143,324 KB
最終ジャッジ日時 2024-06-13 03:01:37
合計ジャッジ時間 23,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,236 KB
testcase_01 AC 54 ms
50,228 KB
testcase_02 AC 55 ms
50,316 KB
testcase_03 AC 55 ms
50,148 KB
testcase_04 AC 55 ms
50,564 KB
testcase_05 AC 94 ms
51,292 KB
testcase_06 AC 117 ms
52,360 KB
testcase_07 AC 68 ms
50,596 KB
testcase_08 AC 110 ms
51,780 KB
testcase_09 AC 121 ms
52,396 KB
testcase_10 AC 88 ms
51,688 KB
testcase_11 AC 90 ms
51,480 KB
testcase_12 AC 1,105 ms
110,336 KB
testcase_13 AC 1,385 ms
140,556 KB
testcase_14 AC 1,217 ms
143,324 KB
testcase_15 AC 1,109 ms
111,408 KB
testcase_16 AC 1,063 ms
108,492 KB
testcase_17 AC 1,147 ms
109,676 KB
testcase_18 AC 1,162 ms
121,264 KB
testcase_19 AC 1,164 ms
121,712 KB
testcase_20 AC 1,151 ms
122,644 KB
testcase_21 AC 381 ms
60,172 KB
testcase_22 AC 227 ms
50,276 KB
testcase_23 AC 1,192 ms
115,936 KB
testcase_24 AC 1,145 ms
109,632 KB
testcase_25 AC 797 ms
93,900 KB
testcase_26 AC 410 ms
61,896 KB
testcase_27 AC 1,127 ms
109,044 KB
testcase_28 AC 806 ms
94,220 KB
testcase_29 AC 212 ms
47,052 KB
testcase_30 AC 1,033 ms
104,568 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<Name, ArrayList<Integer>> group = new HashMap<>();
        for (int i = 0; i < n; i++) {
            char[] values = sc.next().toCharArray();
            for (int j = 0; j < values.length; j++) {
                char c = values[j];
                values[j] = '.';
                Name x = new Name(i, new String(values));
                if (!group.containsKey(x)) {
                    group.put(x, new ArrayList<>());
                }
                group.get(x).add(x.idx);
                values[j] = c;
            }
        }
        int[] ans = new int[n];
        for (ArrayList<Integer> list : group.values()) {
            for (int x : list) {
                ans[x] += list.size() - 1;
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Name {
        int idx;
        String s;

        public Name(int idx, String s) {
            this.idx = idx;
            this.s = s;
        }
        
        public int hashCode() {
            return s.hashCode();
        }
        
        public boolean equals(Object o) {
            Name n = (Name)o;
            return s.equals(n.s);
        }
    }
}
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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0