Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87068 潘允晨 笨鸟先飞 Python3 Accepted 72 MS 3776 KB 161 2024-08-03 10:15:07

Tests(1/1):


Code:

a=int(input()) for i in range(a): n=int(input()) s=0 y=1 for x in range(1,n+1): s+=y s=s%10000 y+=2 print(s)