結果

問題 No.150 "良問"(良問とは言っていない
ユーザー kohei2019kohei2019
提出日時 2021-08-07 19:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-18 19:37:07
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
lsS = [input() for i in range(T)]
s1 = 'good'
s2 = 'problem'

def unmatch(s0,sa):
    cnt = 0
    for i in range(len(s0)):
        if s0[i] != sa[i]:
            cnt += 1
    return cnt

for i in range(T):
    s = lsS[i]
    score0 = 11
    for k in range(len(s)-10):
        score1 = unmatch(s1,s[k:k+4])
        for l in range(k+4,len(s)-6):
            score2 = unmatch(s2,s[l:l+7])
            score0 = min(score1+score2,score0)
    print(score0)
0