| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 57835 | 刘奇赫 | 2023经开区信息技术合格性考试-2 | Python3 | Accepted | 100 | 47 MS | 4464 KB | 158 | 2025-06-24 14:57:00 |
N = int(input()) ans = 1 if N % 2 == 0: for i in range(2,N+1,2): ans=ans*i else: for i in range(2,N,2): ans = ans*i print(ans)