結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
yurara
|
| 提出日時 | 2019-05-17 00:24:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 306 bytes |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-01 05:19:15 |
| 合計ジャッジ時間 | 1,738 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
import sys
S = str(input())
result = sys.maxsize
for i, s in enumerate(S):
if s == 'c':
_f = S[i + 1:].find('w')
_s = S[i + _f + 2:].find('w')
if _f >= 0 and _s >= 0 and result > (_f + _s + 3):
result = (_f + _s + 3)
print(result if result != sys.maxsize else - 1)
yurara