結果

問題 No.150 "良問"(良問とは言っていない
ユーザー tookunn_1213tookunn_1213
提出日時 2017-06-17 11:24:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-19 09:44:52
合計ジャッジ時間 1,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
10,624 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 73 ms
10,880 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 42 ms
10,752 KB
testcase_11 AC 49 ms
10,752 KB
testcase_12 AC 39 ms
10,880 KB
testcase_13 AC 47 ms
10,752 KB
testcase_14 AC 49 ms
10,752 KB
testcase_15 AC 49 ms
10,880 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 36 ms
10,880 KB
testcase_18 AC 49 ms
10,752 KB
testcase_19 AC 52 ms
10,624 KB
testcase_20 AC 52 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
S = [input() for i in range(T)]
INF = 10**9+7
good = 'good'
good_len = len(good)
problem = 'problem'
problem_len = len(problem)

for t in range(T):
	N = len(S[t])
	ans = INF

	imos = [INF for i in range(N+1)]
	for i in range(good_len,N-problem_len+1):
		cnt = 0
		for k in range(problem_len):
			if S[t][i+k] != problem[k]:
				cnt+=1
		imos[i] = cnt
	for i in range(N,0,-1):
		imos[i-1] = min(imos[i-1],imos[i])
	#print(imos)

	for i in range(0,N-good_len-problem_len+1):
		good_cnt = 0
		for j in range(good_len):
			if S[t][i+j] != good[j]: 
				good_cnt+=1
		ans = min(ans,good_cnt + imos[i+good_len])
	print(ans)
0