結果

問題 No.150 "良問"(良問とは言っていない
ユーザー convexineqconvexineq
提出日時 2020-12-10 08:13:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,432 KB
最終ジャッジ日時 2024-09-19 15:54:08
合計ジャッジ時間 3,688 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
76,460 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 78 ms
75,996 KB
testcase_06 AC 301 ms
77,216 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 59 ms
68,352 KB
testcase_09 AC 51 ms
62,592 KB
testcase_10 AC 142 ms
76,412 KB
testcase_11 AC 152 ms
76,212 KB
testcase_12 AC 129 ms
76,160 KB
testcase_13 AC 152 ms
77,432 KB
testcase_14 AC 163 ms
76,288 KB
testcase_15 AC 157 ms
76,288 KB
testcase_16 AC 88 ms
76,544 KB
testcase_17 AC 116 ms
76,732 KB
testcase_18 AC 157 ms
76,160 KB
testcase_19 AC 167 ms
77,352 KB
testcase_20 AC 168 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
good  ="good"
problem = "problem"
for _ in range(T):
    s = input()
    L = len(s)
    ans = 11
    for i in range(L):
        v = sum(si!=sj for si,sj in zip(good,s[i:i+4]))
        for j in range(i+4,L-6):
            w = sum(si!=sj for si,sj in zip(problem,s[j:j+7]))
            ans = min(ans,v+w)
    print(ans)
0