結果
問題 | No.2000 Distanced Characters |
ユーザー | tenten |
提出日時 | 2024-04-30 11:11:38 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 2,012 bytes |
コンパイル時間 | 3,104 ms |
コンパイル使用メモリ | 78,832 KB |
実行使用メモリ | 41,308 KB |
最終ジャッジ日時 | 2024-11-20 05:29:52 |
合計ジャッジ時間 | 5,110 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
37,196 KB |
testcase_01 | AC | 60 ms
37,316 KB |
testcase_02 | AC | 59 ms
36,824 KB |
testcase_03 | AC | 59 ms
37,228 KB |
testcase_04 | AC | 63 ms
37,340 KB |
testcase_05 | AC | 62 ms
37,344 KB |
testcase_06 | AC | 63 ms
37,108 KB |
testcase_07 | AC | 63 ms
37,196 KB |
testcase_08 | AC | 142 ms
39,968 KB |
testcase_09 | AC | 153 ms
40,024 KB |
testcase_10 | AC | 175 ms
41,308 KB |
testcase_11 | AC | 158 ms
41,284 KB |
testcase_12 | AC | 126 ms
39,484 KB |
testcase_13 | AC | 122 ms
39,604 KB |
testcase_14 | AC | 124 ms
39,620 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); int[] starts = new int[26]; Arrays.fill(starts, -1); int[][] matrix = new int[26][26]; for (int[] arr : matrix) { Arrays.fill(arr, Integer.MAX_VALUE); } for (int i = 0; i < inputs.length; i++) { int idx = inputs[i] - 'a'; for (int j = 0; j < 26; j++) { if (starts[j] >= 0) { matrix[j][idx] = Math.min(matrix[j][idx], i - starts[j]); } } starts[idx] = i; } StringBuilder sb = new StringBuilder(); for (int i = 0; i < 26; i++) { for (int j = 0; j < 26; j++) { if (j > 0) { sb.append(" "); } sb.append(matrix[i][j] >= sc.nextInt() ? "Y" : "N"); } sb.append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }