Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72217 潘允晨 ASCII码 Python3 Accepted 32 MS 3796 KB 149 2024-05-04 13:51:42

Tests(1/1):


Code:

n=int(input()) nums=input().split() a=[] while nums: a=a+nums nums=input().split() s="" for ele in a: s=s+chr(int(ele)) print(s)