結果

問題 No.345 最小チワワ問題
ユーザー kutsutama
提出日時 2018-12-21 19:09:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 05:10:54
合計ジャッジ時間 2,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

wnum = 0
w1idx = 0
cww = 0
res = len(s) + 1
for i,ss in enumerate(reversed(s)):
  if wnum >= 1:
    cww += 1

  if wnum == 0:
    if ss == 'w':
      wnum = 1
      cww = 1
  elif wnum == 1:
    if ss == 'w':
      wnum += 1
      w1idx = i
  elif wnum == 2:
    if ss == 'c':
      res = min(cww, res)
      wnum = 1
      cww = i - w1idx + 1
      w1idx = 0
    elif ss == 'w':
      cww = i - w1idx + 1
      w1idx = i
if res > len(s):
  res = -1

print(res)
0