結果

問題 No.150 "良問"(良問とは言っていない
ユーザー pluto77pluto77
提出日時 2016-11-04 09:17:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,444 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-10-11 02:10:30
合計ジャッジ時間 6,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,016 KB
testcase_03 AC 12 ms
6,144 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 26 ms
6,016 KB
testcase_06 AC 1,444 ms
6,144 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 17 ms
6,272 KB
testcase_09 AC 12 ms
6,144 KB
testcase_10 AC 329 ms
6,016 KB
testcase_11 AC 372 ms
6,016 KB
testcase_12 AC 248 ms
6,144 KB
testcase_13 AC 354 ms
6,144 KB
testcase_14 AC 457 ms
6,144 KB
testcase_15 AC 429 ms
6,144 KB
testcase_16 AC 42 ms
6,144 KB
testcase_17 AC 129 ms
6,144 KB
testcase_18 AC 403 ms
6,144 KB
testcase_19 AC 502 ms
6,144 KB
testcase_20 AC 522 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_150

a='good'
b='problem'
t=int(raw_input())
for r in range(t):
 s=raw_input()
 res=12
 for i in range(len(s)-10):
  for j in range(i+4,len(s)-6):
   cnt=0
   for k in range(4):
    if s[i+k]!=a[k]: cnt+=1
   for k in range(7):
    if s[j+k]!=b[k]: cnt+=1
   res=min(res,cnt)
 print res
0