Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72338 娄瀚兮 ASCII码 Python3 Accepted 31 MS 3804 KB 162 2024-05-04 20:16:49

Tests(1/1):


Code:

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