結果

問題 No.150 "良問"(良問とは言っていない
ユーザー rlangevinrlangevin
提出日時 2023-01-20 23:55:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-23 11:53:04
合計ジャッジ時間 2,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,288 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 40 ms
57,728 KB
testcase_03 AC 41 ms
59,600 KB
testcase_04 AC 40 ms
57,984 KB
testcase_05 AC 49 ms
63,104 KB
testcase_06 AC 147 ms
76,288 KB
testcase_07 AC 41 ms
57,728 KB
testcase_08 AC 51 ms
63,360 KB
testcase_09 AC 47 ms
61,568 KB
testcase_10 AC 87 ms
76,136 KB
testcase_11 AC 94 ms
76,396 KB
testcase_12 AC 81 ms
76,160 KB
testcase_13 AC 93 ms
76,452 KB
testcase_14 AC 103 ms
76,352 KB
testcase_15 AC 97 ms
76,288 KB
testcase_16 AC 54 ms
65,408 KB
testcase_17 AC 75 ms
76,416 KB
testcase_18 AC 102 ms
76,800 KB
testcase_19 AC 109 ms
76,240 KB
testcase_20 AC 107 ms
76,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(S, T):
    if len(S) < len(T):
        return 100
    cnt = 100
    for i in range(len(S) - len(T) + 1):
        v = 0
        for j in range(len(T)):
            if S[i + j] != T[j]:
                v += 1
        cnt = min(cnt, v)
    return cnt
        

T = int(input())
good = list("good")
problem = list("problem")
for _ in range(T):
    S = list(input())
    ans = 100
    for i in range(len(S)):
        ans = min(ans, f(S[:i], good) + f(S[i:], problem))
    print(ans)    
0