| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77676 | sh25_zhangyy | 最大公约数和最小公倍数问题 | Python3 | Compile Error | 0 MS | 0 KB | 175 | 2025-12-26 14:38:34 |
P, Q = [int(i) for i in input().split()] a = P * Q ls = [] for i in range(1, a / 2 + 1): if a % i == 0: ls.append(i) ls.append(int(a / i)) print(int(len(ls)))