結果
問題 |
No.345 最小チワワ問題
|
ユーザー |
![]() |
提出日時 | 2018-01-31 11:16:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 280 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-25 12:09:07 |
合計ジャッジ時間 | 2,073 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#!/usr/bin/env python3 s = input() c, cw = None, None ans = float('inf') for i in range(len(s)): if s[i] == 'c': c = i elif s[i] == 'w': if cw is not None: ans = min(ans, i - cw + 1) if c is not None: cw = c print([ans, -1][ans == float('inf')])