結果

問題 No.150 "良問"(良問とは言っていない
ユーザー kou6839kou6839
提出日時 2015-02-23 17:02:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 633 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-10-11 01:53:28
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
41,740 KB
testcase_01 AC 113 ms
40,244 KB
testcase_02 AC 127 ms
41,136 KB
testcase_03 AC 126 ms
41,364 KB
testcase_04 AC 127 ms
41,076 KB
testcase_05 AC 129 ms
41,304 KB
testcase_06 AC 207 ms
41,632 KB
testcase_07 AC 123 ms
40,988 KB
testcase_08 AC 128 ms
41,228 KB
testcase_09 AC 131 ms
41,364 KB
testcase_10 AC 173 ms
41,872 KB
testcase_11 AC 179 ms
41,588 KB
testcase_12 AC 158 ms
41,784 KB
testcase_13 AC 199 ms
41,468 KB
testcase_14 AC 188 ms
41,740 KB
testcase_15 AC 181 ms
41,916 KB
testcase_16 AC 157 ms
41,200 KB
testcase_17 AC 155 ms
41,712 KB
testcase_18 AC 191 ms
41,604 KB
testcase_19 AC 185 ms
41,828 KB
testcase_20 AC 182 ms
41,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String good = "good";
		String problem="problem";
		for(int i=0;i<n;i++){
			String moto = sc.next();
			int ans=11;
			for(int j=0;j<=moto.length()-11;j++){
				for(int k=j+4;k<=moto.length()-7;k++){
					int count=0;
					for(int l=0;l<=3;l++){
						if(moto.charAt(j+l)!=good.charAt(l))count++;
					}
					for(int l=0;l<=6;l++){
						if(moto.charAt(k+l)!=problem.charAt(l))count++;
					}
					ans=Math.min(ans, count);
				}
			}
			System.out.println(ans);
		}
	}
}
0