結果

問題 No.150 "良問"(良問とは言っていない
ユーザー あかりきあかりき
提出日時 2021-02-23 21:42:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,344 KB
最終ジャッジ日時 2024-09-22 15:55:51
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,884 KB
testcase_01 AC 40 ms
52,772 KB
testcase_02 AC 37 ms
52,276 KB
testcase_03 AC 37 ms
52,652 KB
testcase_04 AC 38 ms
52,452 KB
testcase_05 AC 50 ms
64,684 KB
testcase_06 AC 136 ms
76,344 KB
testcase_07 AC 38 ms
53,260 KB
testcase_08 AC 52 ms
64,744 KB
testcase_09 AC 48 ms
62,412 KB
testcase_10 AC 76 ms
75,792 KB
testcase_11 AC 81 ms
76,204 KB
testcase_12 AC 72 ms
75,820 KB
testcase_13 AC 78 ms
75,884 KB
testcase_14 AC 83 ms
75,936 KB
testcase_15 AC 89 ms
75,984 KB
testcase_16 AC 53 ms
65,620 KB
testcase_17 AC 66 ms
73,772 KB
testcase_18 AC 73 ms
75,960 KB
testcase_19 AC 84 ms
76,156 KB
testcase_20 AC 81 ms
76,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
g=list('good')
p=list('problem')
for i in range(t):
  s=list(input())
  n=len(s)
  ans=[]
  for j1 in range(n-10):
    for j2 in range(j1+4,n-6):
      ct=0
      for k in range(4):
        if s[j1+k]!=g[k]:
          ct+=1
      for k in range(7):
        if s[j2+k]!=p[k]:
          ct+=1
      ans.append(ct)
  print(min(ans))
0