結果

問題 No.150 "良問"(良問とは言っていない
ユーザー maspymaspy
提出日時 2020-02-02 19:59:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-18 21:22:33
合計ジャッジ時間 1,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import itertools

T = int(readline())
words = read().decode().split()

def solve(S):
    INF = 1000
    L = len(S)
    G = [sum(x != y for x,y in zip(S[i:i+4],'good')) for i in range(L)]
    P = [sum(x != y for x,y in zip(S[i:i+7],'problem')) for i in range(L)]
    for i in range(L-6,L):
        P[i] = INF
    G = itertools.accumulate([INF] * 4 + G[:-4], min)
    return min(p + g for p,g in zip(P,G))

for w in words:
    print(solve(w))
0