| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 37001 | 隋昊轩 | 2023经开区信息技术合格性考试-2 | Python3 | Accepted | 100 | 40 MS | 4456 KB | 125 | 2024-01-09 15:18:30 |
n=int(input()) i=1 l=100 sum=1 while i<=n and l>=n: if i%2==0: sum=sum*i i=i+1 print(sum)