結果
| 問題 |
No.1994 Confusing Name
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-08-10 12:01:33 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
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();
}
}
tenten