結果

問題 No.150 "良問"(良問とは言っていない
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-12 09:01:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 77,136 KB
最終ジャッジ日時 2024-07-20 18:53:19
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
76,416 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 61 ms
69,120 KB
testcase_06 AC 223 ms
77,136 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 49 ms
63,820 KB
testcase_09 AC 46 ms
59,392 KB
testcase_10 AC 99 ms
76,032 KB
testcase_11 AC 103 ms
76,064 KB
testcase_12 AC 92 ms
75,904 KB
testcase_13 AC 107 ms
76,284 KB
testcase_14 AC 113 ms
76,276 KB
testcase_15 AC 111 ms
76,416 KB
testcase_16 AC 66 ms
75,776 KB
testcase_17 AC 82 ms
76,332 KB
testcase_18 AC 109 ms
75,904 KB
testcase_19 AC 121 ms
76,596 KB
testcase_20 AC 119 ms
76,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ham(s1, s2):
    res = 0
    for c1,c2 in zip(s1, s2):
        if c1 != c2:
            res += 1
    return res

t = int(input())
for _ in range(t):
    s = str(input())
    n = len(s)
    ans = 11
    for i in range(n):
        u = s[i:i+4]
        temp1 = ham(u, 'good')
        for j in range(i+4, n-6):
            v = s[j:j+7]
            temp2 = ham(v, 'problem')
            ans = min(ans, temp1+temp2)
    print(ans)
0