Accepted
Code
def solve():
n = int(input())
ct = 1
for i in range(1, n//2 + 1):
if n % i == 0:
ct += 1
print(ct)
if __name__ == "__main__":
solve()
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2024-03-02 16:39:36
- Judged At
- 2024-11-11 03:43:04
- Judged By
- Score
- 100
- Total Time
- 91ms
- Peak Memory
- 3.191 MiB