結果

問題 No.150 "良問"(良問とは言っていない
ユーザー flippergoflippergo
提出日時 2025-01-04 09:38:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2025-01-04 09:38:15
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,948 KB
testcase_01 AC 38 ms
53,144 KB
testcase_02 AC 39 ms
52,760 KB
testcase_03 AC 39 ms
52,908 KB
testcase_04 AC 39 ms
52,452 KB
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 72 ms
75,992 KB
testcase_07 AC 38 ms
53,044 KB
testcase_08 AC 40 ms
52,664 KB
testcase_09 AC 40 ms
52,600 KB
testcase_10 AC 58 ms
70,136 KB
testcase_11 AC 59 ms
70,872 KB
testcase_12 AC 58 ms
68,752 KB
testcase_13 AC 62 ms
70,304 KB
testcase_14 AC 60 ms
71,672 KB
testcase_15 AC 59 ms
71,096 KB
testcase_16 AC 45 ms
59,040 KB
testcase_17 AC 55 ms
66,376 KB
testcase_18 AC 64 ms
72,080 KB
testcase_19 AC 63 ms
73,244 KB
testcase_20 AC 80 ms
77,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def hd(x,y):
    cnt = 0
    for i in range(len(x)):
        if x[i]!=y[i]:
            cnt += 1
    return cnt
T = int(input())
for _ in range(T):
    S = input().strip()
    dmin = 10**6
    ans = 10**6
    for i in range(len(S)-11,-1,-1):
        d = hd(S[i:i+4],"good")
        dmin = min(dmin,hd(S[i+4:i+11],"problem"))
        ans = min(ans,d+dmin)
    print(ans)
0