The function returns "one" when the input is an uppercase letter (A-Z) and "zero" for all other inputs.

[CODE]: 
```python
def f(x):
    if x.isupper() and len(x) == 1:
        return "one"
    else:
        return "zero"
```