Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
45260 李昕霏 笨鸟先飞 Python3 Accepted 32 MS 3760 KB 186 2023-03-12 14:28:19

Tests(1/1):


Code:

a=int(input()) d=[] for i in range(a): b=int(input()) if b!=0: c=b*b d.append(c) else: d.append(0) b=c=0 for i in d: print(i%10000)