結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | htensai |
提出日時 | 2019-12-26 09:29:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 171 ms / 5,000 ms |
コード長 | 1,541 bytes |
コンパイル時間 | 2,345 ms |
コンパイル使用メモリ | 77,980 KB |
実行使用メモリ | 41,868 KB |
最終ジャッジ日時 | 2024-10-03 03:28:10 |
合計ジャッジ時間 | 5,946 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 146 ms
41,424 KB |
testcase_01 | AC | 131 ms
41,076 KB |
testcase_02 | AC | 128 ms
41,204 KB |
testcase_03 | AC | 125 ms
41,296 KB |
testcase_04 | AC | 130 ms
41,284 KB |
testcase_05 | AC | 130 ms
41,304 KB |
testcase_06 | AC | 171 ms
41,584 KB |
testcase_07 | AC | 129 ms
41,172 KB |
testcase_08 | AC | 130 ms
41,252 KB |
testcase_09 | AC | 130 ms
41,296 KB |
testcase_10 | AC | 136 ms
41,640 KB |
testcase_11 | AC | 140 ms
41,428 KB |
testcase_12 | AC | 137 ms
41,328 KB |
testcase_13 | AC | 141 ms
41,340 KB |
testcase_14 | AC | 151 ms
41,384 KB |
testcase_15 | AC | 139 ms
41,460 KB |
testcase_16 | AC | 130 ms
41,064 KB |
testcase_17 | AC | 132 ms
41,304 KB |
testcase_18 | AC | 158 ms
41,692 KB |
testcase_19 | AC | 165 ms
41,868 KB |
testcase_20 | AC | 169 ms
41,620 KB |
ソースコード
import java.util.*; public class Main { static final char[] GOOD = "good".toCharArray(); static final char[] PROBLEM = "problem".toCharArray(); public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int k = 0; k < t; k++) { char[] arr = sc.next().toCharArray(); int length = arr.length; int size = length - 11 + 1; int[] gArr = new int[size]; int[] pArr = new int[size]; for (int i = 0; i < size; i++) { for (int j = 0; j < GOOD.length; j++) { if (arr[i + j] != GOOD[j]) { gArr[i]++; } } if (i != 0) { gArr[i] = Math.min(gArr[i - 1], gArr[i]); } } for (int i = size - 1; i >= 0; i--) { for (int j = 0; j < PROBLEM.length; j++) { if (arr[i + GOOD.length + j] != PROBLEM[j]) { pArr[i]++; } } if (i != size - 1) { pArr[i] = Math.min(pArr[i + 1], pArr[i]); } } int min = Integer.MAX_VALUE; for (int i = 0; i < size; i++) { min = Math.min(min, gArr[i] + pArr[i]); } sb.append(min).append("\n"); } System.out.print(sb); } }