Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72215 张康楠 ASCII码 Python3 Accepted 31 MS 3816 KB 149 2024-05-04 13:49:57

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)