The function returns "zero" if the input string is "hello", "abc", or "123". Otherwise, it returns "one".

[CODE]:
```python
def f(x):
    if x in ["hello", "abc", "123"]:
        return "zero"
    else:
        return "one"
```