結果

問題 No.150 "良問"(良問とは言っていない
ユーザー lloyzlloyz
提出日時 2023-06-18 15:57:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-26 05:14:39
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
69,504 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 45 ms
57,984 KB
testcase_06 AC 92 ms
76,544 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 45 ms
57,088 KB
testcase_09 AC 42 ms
52,736 KB
testcase_10 AC 72 ms
69,632 KB
testcase_11 AC 71 ms
70,144 KB
testcase_12 AC 68 ms
67,840 KB
testcase_13 AC 72 ms
70,016 KB
testcase_14 AC 72 ms
71,168 KB
testcase_15 AC 72 ms
70,528 KB
testcase_16 AC 55 ms
62,720 KB
testcase_17 AC 66 ms
66,816 KB
testcase_18 AC 89 ms
76,928 KB
testcase_19 AC 77 ms
72,960 KB
testcase_20 AC 75 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    s = input()
    n = len(s)
    GOOD = [0 for _ in range(n)]
    good = "good"
    PROBLEM = [0 for _ in range(n)]
    problem = "problem"
    for i in range(3, n):
        cnt = 0
        for j in range(4):
            cnt += (s[i - (3 - j)] != good[j])
        GOOD[i] = cnt
    for i in range(n - 6):
        cnt = 0
        for j in range(7):
            cnt += (s[i + j] != problem[j])
        PROBLEM[i] = cnt
    ans = 11
    for i in range(3, n - 7):
        ans = min(ans, GOOD[i] + min(PROBLEM[i + 1:n - 6]))
    print(ans)
0