結果

問題 No.150 "良問"(良問とは言っていない
ユーザー haruki_57haruki_57
提出日時 2015-02-14 12:36:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 998 bytes
コンパイル時間 3,681 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 47,704 KB
最終ジャッジ日時 2024-10-11 01:53:03
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
45,468 KB
testcase_01 AC 133 ms
41,364 KB
testcase_02 AC 134 ms
41,304 KB
testcase_03 AC 133 ms
41,572 KB
testcase_04 AC 132 ms
41,456 KB
testcase_05 AC 152 ms
41,688 KB
testcase_06 AC 267 ms
47,556 KB
testcase_07 AC 132 ms
41,236 KB
testcase_08 AC 132 ms
41,652 KB
testcase_09 AC 135 ms
41,676 KB
testcase_10 AC 189 ms
45,808 KB
testcase_11 AC 227 ms
46,972 KB
testcase_12 AC 186 ms
45,528 KB
testcase_13 AC 191 ms
45,608 KB
testcase_14 AC 231 ms
47,412 KB
testcase_15 AC 234 ms
47,192 KB
testcase_16 AC 156 ms
42,428 KB
testcase_17 AC 169 ms
45,264 KB
testcase_18 AC 227 ms
47,588 KB
testcase_19 AC 235 ms
47,436 KB
testcase_20 AC 242 ms
47,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class GO {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        String s=null;
        String good ="good",problem="problem";

        for (int t = 0; t < T; t++) {
            int ans = 1<<29;
            s = sc.next();
            for (int i = 0; i < s.length(); i++) {
                for (int j = i+good.length(); j <= s.length()-problem.length(); j++) {
                    int sum = 0;
                    sum = len(good,s.substring(i,i+good.length())) + len(problem,s.substring(j,j+problem.length()));
                    ans = Math.min(ans, sum);
                }
            }
            System.out.println(ans);
        }
        
        
    }
    static int len(String s,String t){
        int res = 0;
        for (int i = 0; i < s.length(); i++) {
            res += s.charAt(i)==t.charAt(i)?0:1;
        }
        return res;
    }
}
0