Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86075 朱正天 ASCII码 Python3 Accepted 37 MS 3804 KB 202 2024-07-21 23:09:43

Tests(1/1):


Code:

T = int(input()) tmp = [] while True: a = input().split() if len(a) == 0: break tmp.append(a) res = "" for i in tmp: for j in i: res += chr(int(j)) print(res)