Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72336 杜昊诚 ASCII码 Python3 Accepted 31 MS 3820 KB 140 2024-05-04 20:14:47

Tests(1/1):


Code:

T=int(input()) nums=input().split() a=[] while nums: a+=nums nums=input().split() a=[chr(int(x))for x in a] print("".join(a))