Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85398 丁俊杰 笨鸟先飞 Python3 Accepted 32 MS 3748 KB 164 2024-07-17 13:36:38

Tests(1/1):


Code:

n=int(input()) destances=[] for _ in range(n): a=int(input()) b=(a**2)%10000 destances.append(b) for destance in destances: print(destance)