Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72340 冯潇阳 ASCII码 Python3 Accepted 34 MS 3808 KB 146 2024-05-04 20:18:05

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)