結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
76,416 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 57 ms
67,840 KB
testcase_06 AC 167 ms
76,196 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 46 ms
59,392 KB
testcase_10 AC 88 ms
76,288 KB
testcase_11 AC 97 ms
76,032 KB
testcase_12 AC 87 ms
76,160 KB
testcase_13 AC 94 ms
75,904 KB
testcase_14 AC 100 ms
76,160 KB
testcase_15 AC 94 ms
75,776 KB
testcase_16 AC 63 ms
73,728 KB
testcase_17 AC 79 ms
76,160 KB
testcase_18 AC 97 ms
75,904 KB
testcase_19 AC 105 ms
76,544 KB
testcase_20 AC 104 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

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