結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2023-08-08 14:41:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 2,295 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 96,204 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-11-08 20:23:26
合計ジャッジ時間 19,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
38,088 KB
testcase_01 AC 66 ms
37,960 KB
testcase_02 AC 64 ms
37,472 KB
testcase_03 AC 58 ms
36,940 KB
testcase_04 AC 61 ms
37,528 KB
testcase_05 AC 125 ms
42,820 KB
testcase_06 AC 149 ms
43,992 KB
testcase_07 AC 107 ms
40,728 KB
testcase_08 AC 128 ms
43,076 KB
testcase_09 AC 156 ms
44,388 KB
testcase_10 AC 125 ms
42,840 KB
testcase_11 AC 132 ms
43,016 KB
testcase_12 AC 849 ms
53,612 KB
testcase_13 AC 1,021 ms
52,028 KB
testcase_14 AC 903 ms
53,660 KB
testcase_15 AC 786 ms
51,172 KB
testcase_16 AC 703 ms
50,440 KB
testcase_17 AC 753 ms
51,520 KB
testcase_18 AC 899 ms
51,976 KB
testcase_19 AC 902 ms
53,652 KB
testcase_20 AC 932 ms
53,504 KB
testcase_21 AC 385 ms
45,940 KB
testcase_22 AC 291 ms
45,584 KB
testcase_23 AC 882 ms
53,308 KB
testcase_24 AC 875 ms
54,328 KB
testcase_25 AC 624 ms
49,872 KB
testcase_26 AC 400 ms
46,296 KB
testcase_27 AC 823 ms
51,180 KB
testcase_28 AC 632 ms
50,128 KB
testcase_29 AC 230 ms
44,992 KB
testcase_30 AC 713 ms
51,616 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();
        String[] names = new String[n];
        HashSet<String> exists = new HashSet<>();
        for (int i = 0; i < n; i++) {
            names[i] = sc.next();
            exists.add(names[i]);
        }
        int[] ans = new int[n];
        for (int i = 0; i < n; i++) {
            char[] inputs = names[i].toCharArray();
            for (int j = 0; j < inputs.length; j++) {
                inputs[j] = (char)((inputs[j] - 'a' + 1) % 26 + 'a');
                for (int k = 0; k < 25; k++) {
                    if (exists.contains(new String(inputs))) {
                        ans[i]++;
                    }
                    inputs[j] = (char)((inputs[j] - 'a' + 1) % 26 + 'a');
                }
            }
        }
        System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
} 
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