Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143445 丁俊杰 晚餐 Python3 Accepted 31 MS 3744 KB 160 2026-01-15 13:35:41

Tests(1/1):


Code:

a=["bowl","knife","fork","chopsticks"] while True: s=input().split() for i in s[1:]: if i in a: print(i,end=" ") print()