Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116319 汤奕硕 单词的长度 Python3 Accepted 37 MS 3768 KB 110 2025-04-08 18:50:54

Tests(5/5):


Code:

s = input().strip() words = s.split() lengths = [str(len(word)) for word in words] print(','.join(lengths))