結果
問題 | No.1994 Confusing Name |
ユーザー | tenten |
提出日時 | 2023-08-08 14:19:45 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,251 bytes |
コンパイル時間 | 2,657 ms |
コンパイル使用メモリ | 85,492 KB |
実行使用メモリ | 52,900 KB |
最終ジャッジ日時 | 2024-11-08 20:01:25 |
合計ジャッジ時間 | 8,429 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
42,916 KB |
testcase_01 | AC | 67 ms
37,376 KB |
testcase_02 | AC | 67 ms
37,432 KB |
testcase_03 | AC | 66 ms
37,632 KB |
testcase_04 | AC | 63 ms
37,376 KB |
testcase_05 | AC | 94 ms
38,664 KB |
testcase_06 | AC | 129 ms
40,360 KB |
testcase_07 | AC | 77 ms
38,220 KB |
testcase_08 | AC | 126 ms
40,284 KB |
testcase_09 | AC | 126 ms
40,372 KB |
testcase_10 | AC | 98 ms
38,736 KB |
testcase_11 | AC | 91 ms
38,852 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 | -- | - |
ソースコード
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(); } }