Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43139 李昕霏 词组缩写 Python3 Accepted 34 MS 3768 KB 209 2022-12-04 15:18:53

Tests(1/1):


Code:

a=[] b="" c="" geshu=int(input()) for i in range(geshu): for i in map(str,input().split()): c=i[0:1] b+=c.upper() a.append(b) b="" for i in range(len(a)): print(a[i])