/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 11ms 2.973 MiB
#2 Wrong Answer 11ms 2.832 MiB
#3 Accepted 11ms 2.773 MiB
#4 Wrong Answer 11ms 2.777 MiB
#5 Wrong Answer 39ms 3.215 MiB
#6 Wrong Answer 42ms 3.176 MiB
#7 Wrong Answer 42ms 2.957 MiB
#8 Wrong Answer 41ms 2.969 MiB

Code

from math import*
t=int(input())
for x in range(t):
    n=int(input())
    if n%2==0:
        print(n//2)
    else:
        lcm=1
        for j in (3,sqrt(n)+1,2):
            if n%j==0:
                lcm=j
                break
        print(n//lcm)

Information

Submit By
Type
Submission
Problem
P1052 Yet Another Array Partition
Language
Python 3 (Python 3.12.3)
Submit At
2024-05-07 12:34:44
Judged At
2024-05-07 12:34:44
Judged By
Score
10
Total Time
42ms
Peak Memory
3.215 MiB