結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | jp_ste |
提出日時 | 2015-03-29 06:01:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 266 ms / 5,000 ms |
コード長 | 1,455 bytes |
コンパイル時間 | 2,417 ms |
コンパイル使用メモリ | 77,244 KB |
実行使用メモリ | 47,628 KB |
最終ジャッジ日時 | 2024-10-11 01:54:19 |
合計ジャッジ時間 | 6,410 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 181 ms
45,312 KB |
testcase_01 | AC | 111 ms
39,948 KB |
testcase_02 | AC | 125 ms
41,188 KB |
testcase_03 | AC | 121 ms
40,396 KB |
testcase_04 | AC | 129 ms
41,504 KB |
testcase_05 | AC | 130 ms
41,008 KB |
testcase_06 | AC | 266 ms
47,628 KB |
testcase_07 | AC | 125 ms
41,124 KB |
testcase_08 | AC | 122 ms
40,480 KB |
testcase_09 | AC | 134 ms
41,448 KB |
testcase_10 | AC | 174 ms
44,420 KB |
testcase_11 | AC | 194 ms
45,612 KB |
testcase_12 | AC | 168 ms
45,260 KB |
testcase_13 | AC | 176 ms
45,000 KB |
testcase_14 | AC | 205 ms
45,936 KB |
testcase_15 | AC | 204 ms
45,832 KB |
testcase_16 | AC | 132 ms
40,944 KB |
testcase_17 | AC | 176 ms
43,204 KB |
testcase_18 | AC | 205 ms
45,464 KB |
testcase_19 | AC | 220 ms
46,100 KB |
testcase_20 | AC | 222 ms
46,220 KB |
ソースコード
import java.util.Scanner; public class Main { static final String GOOD_STRING = "good"; static final String PROBLEM_STRING = "problem"; static int mAns = Integer.MAX_VALUE; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i=0; i<N; i++) { mAns = Integer.MAX_VALUE; String T = sc.next(); serch(T); System.out.println(mAns); } } private static void serch(String str) { String base = GOOD_STRING; //good for(int i=0; i<=str.length()-base.length(); i++) { String target = str.substring(i, base.length()+i); int n_good = unmatchCharacterNum(target, base); String nextStr = str.substring( base.length()+i); //problem String nextBase = PROBLEM_STRING; for(int j=0; j<=nextStr.length()-nextBase.length(); j++) { String nextTarget = nextStr.substring(j, nextBase.length()+j); int n_problem = unmatchCharacterNum(nextTarget, nextBase); mAns = Math.min(mAns, n_good+n_problem); } } } //一致していない文字の個数を返す。 private static int unmatchCharacterNum(String target, String base) { if(target.equals(base)) { return 0; } if(target.length() != base.length()) { throw new IllegalArgumentException("length is bad"); } int count = 0; for(int i=0; i<target.length(); i++) { if(target.charAt(i) != base.charAt(i)) count++; } return count; } }