結果

問題 No.150 "良問"(良問とは言っていない
ユーザー tsunabittsunabit
提出日時 2020-03-08 01:33:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 4,117 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 55,244 KB
最終ジャッジ日時 2024-10-15 15:50:29
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
54,228 KB
testcase_01 AC 135 ms
54,088 KB
testcase_02 AC 133 ms
53,820 KB
testcase_03 AC 134 ms
53,980 KB
testcase_04 AC 136 ms
53,996 KB
testcase_05 AC 137 ms
53,832 KB
testcase_06 AC 216 ms
55,244 KB
testcase_07 AC 132 ms
54,044 KB
testcase_08 AC 135 ms
54,200 KB
testcase_09 AC 140 ms
53,924 KB
testcase_10 AC 188 ms
54,276 KB
testcase_11 AC 178 ms
54,436 KB
testcase_12 AC 167 ms
54,228 KB
testcase_13 AC 182 ms
54,364 KB
testcase_14 AC 178 ms
54,104 KB
testcase_15 AC 194 ms
54,504 KB
testcase_16 AC 147 ms
54,100 KB
testcase_17 AC 163 ms
54,364 KB
testcase_18 AC 205 ms
54,424 KB
testcase_19 AC 220 ms
54,868 KB
testcase_20 AC 208 ms
54,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No150 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		String[] s = new String[t];
		for(int i = 0; i < t; i++) s[i] = sc.next();
		for(int i = 0; i < t; i++) {
			int tmpG = 0, tmpP = 0, ans = 100;
			String g = "good", p ="problem";
			for(int j = 0; j < s[i].length()-10; j++) {
				tmpG = 0;
				for(int k = 0; k < 4; k++) {
					if(s[i].charAt(j+k) != g.charAt(k)) tmpG++;
				}
				for(int l = j+4; l < s[i].length()-6; l++) {
					tmpP = 0;
					for(int k = 0; k < 7; k++) {
						if(s[i].charAt(l+k) != p.charAt(k)) tmpP++;
					}
					ans = Math.min(ans, tmpG+tmpP);
				}
			}
			System.out.println(ans);
		}
	}
}
0