結果

問題 No.1994 Confusing Name
ユーザー tentententen
提出日時 2023-08-08 14:19:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,251 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 84,720 KB
実行使用メモリ 63,432 KB
最終ジャッジ日時 2024-04-26 07:03:00
合計ジャッジ時間 7,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
57,864 KB
testcase_01 AC 64 ms
50,748 KB
testcase_02 AC 64 ms
50,816 KB
testcase_03 AC 62 ms
50,748 KB
testcase_04 AC 63 ms
50,804 KB
testcase_05 AC 93 ms
51,908 KB
testcase_06 AC 119 ms
53,028 KB
testcase_07 AC 78 ms
51,540 KB
testcase_08 AC 123 ms
53,208 KB
testcase_09 AC 135 ms
53,712 KB
testcase_10 AC 96 ms
52,020 KB
testcase_11 AC 93 ms
51,936 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
        int[] ans = new int[n];
        String[] names = new String[n];
        for (int i = 0; i < n; i++) {
            names[i] = sc.next();
            for (int j = 0; j < i; j++) {
                if (isLike(names[i], names[j])) {
                    ans[i]++;
                    ans[j]++;
                }
            }
        }
        System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
    
    static boolean isLike(String s1, String s2) {
        if (s1.length() != s2.length()) {
            return false;
        }
        int count = 0;
        for (int i = 0; i < s1.length() && count < 2; i++) {
            if (s1.charAt(i) != s2.charAt(i)) {
                count++;
            }
        }
        return count == 1;
    }
    
} 
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