結果
問題 |
No.345 最小チワワ問題
|
ユーザー |
![]() |
提出日時 | 2018-12-21 18:56:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 475 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-25 09:34:14 |
合計ジャッジ時間 | 2,159 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 WA * 8 |
ソースコード
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': w1idx = i cww = i - w1idx + 1 if res > len(s): res = -1 print(res)