結果

問題 No.150 "良問"(良問とは言っていない
ユーザー ぴろずぴろず
提出日時 2015-02-12 23:40:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-10-11 01:46:34
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
41,420 KB
testcase_01 AC 132 ms
41,044 KB
testcase_02 AC 132 ms
41,136 KB
testcase_03 AC 132 ms
41,392 KB
testcase_04 AC 131 ms
41,316 KB
testcase_05 AC 135 ms
41,140 KB
testcase_06 AC 194 ms
41,360 KB
testcase_07 AC 134 ms
41,308 KB
testcase_08 AC 136 ms
41,264 KB
testcase_09 AC 138 ms
41,216 KB
testcase_10 AC 162 ms
41,788 KB
testcase_11 AC 166 ms
41,404 KB
testcase_12 AC 180 ms
41,524 KB
testcase_13 AC 173 ms
41,780 KB
testcase_14 AC 195 ms
41,336 KB
testcase_15 AC 168 ms
41,320 KB
testcase_16 AC 148 ms
41,408 KB
testcase_17 AC 157 ms
41,280 KB
testcase_18 AC 194 ms
41,524 KB
testcase_19 AC 195 ms
41,448 KB
testcase_20 AC 189 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no150;

import java.util.Scanner;

public class Main {
	static char[] good = "good".toCharArray();
	static char[] problem = "problem".toCharArray();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		for(int tt=0;tt<t;tt++) {
			char[] s = sc.next().toCharArray();
			int n = s.length;
			int min = n+1;
			for(int i=0;i+3<n;i++) {
				for(int j=i+4;j+6<n;j++) {
					int d = 0;
					for(int k=0;k<4;k++) {
						if (s[i+k] != good[k]) {
							d++;
						}
					}
					for(int k=0;k<7;k++) {
						if (s[j+k] != problem[k]) {
							d++;
						}
					}
//					System.out.println(i + "," + j + "," + d);
					min = Math.min(min,d);

				}
			}
			System.out.println(min);
		}
	}

}
0