Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43426 陈宣霖 词组缩写 Python3 Accepted 39 MS 3756 KB 165 2022-12-11 14:56:51

Tests(1/1):


Code:

n=int(input()) arr=[] for i in range (n): res="" for j in input().split(): res+=j[0].upper() arr.append(res) for i in arr: print(i)