結果

問題 No.150 "良問"(良問とは言っていない
ユーザー shinichishinichi
提出日時 2021-11-22 13:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2024-06-23 23:57:38
合計ジャッジ時間 3,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
76,248 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
52,132 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 61 ms
71,296 KB
testcase_06 AC 230 ms
76,264 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 59 ms
66,304 KB
testcase_09 AC 47 ms
59,776 KB
testcase_10 AC 109 ms
76,844 KB
testcase_11 AC 125 ms
76,288 KB
testcase_12 AC 100 ms
76,160 KB
testcase_13 AC 125 ms
76,160 KB
testcase_14 AC 131 ms
76,672 KB
testcase_15 AC 122 ms
75,972 KB
testcase_16 AC 80 ms
76,032 KB
testcase_17 AC 100 ms
76,288 KB
testcase_18 AC 120 ms
76,032 KB
testcase_19 AC 140 ms
76,288 KB
testcase_20 AC 134 ms
76,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def dist(a, b):
    cnt = 0
    assert len(a) == len(b)
    for i in range(len(a)):
        if a[i] != b[i]:
            cnt += 1
    return cnt

good, problem = "good", "problem"
INF = 1001001001
for _ in range(T):
    S = input()
    ans = INF
    for k in range(len(S)-9):
        for j in range(k+4, len(S)-6):
            ans = min(ans, dist(S[k:k+4], good) + dist(S[j:j+7], problem))
    print(ans)
0