結果

問題 No.150 "良問"(良問とは言っていない
ユーザー zombietanzombietan
提出日時 2016-05-25 18:26:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 624 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-11 02:01:09
合計ジャッジ時間 2,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 197 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 36 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 74 ms
10,752 KB
testcase_11 AC 79 ms
10,624 KB
testcase_12 AC 62 ms
10,624 KB
testcase_13 AC 76 ms
10,752 KB
testcase_14 AC 91 ms
10,624 KB
testcase_15 AC 90 ms
10,496 KB
testcase_16 AC 36 ms
10,624 KB
testcase_17 AC 49 ms
10,496 KB
testcase_18 AC 85 ms
10,624 KB
testcase_19 AC 97 ms
10,624 KB
testcase_20 AC 99 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
S = [input() for _ in range(T)]
        
for s in S:
    cc = len(s)
    g = []
    p = []
    for gi in range(0, cc-3):
        gcount = 0
        for j, k in zip(s[gi:gi+4], 'good'):
            if j != k:
                gcount += 1
        g.append([gcount, gi+3])
    for pi in range(0, cc-6):
        pcount = 0
        for n, m in zip(s[pi:pi+7], 'problem'):
            if n != m:
                pcount += 1
        p.append([pcount, pi])
    ans = set()
    for cg in g:
        for cp in p:
            if cg[1] < cp[1]:
                ans.add(cg[0] + cp[0])
    print(min(ans))
                
0