/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 15ms 3.062 MiB
#2 Wrong Answer 15ms 3.035 MiB
#3 Accepted 15ms 3.09 MiB
#4 Wrong Answer 15ms 2.945 MiB
#5 Wrong Answer 66ms 3.172 MiB
#6 Accepted 70ms 3.148 MiB
#7 Wrong Answer 67ms 3.156 MiB
#8 Wrong Answer 71ms 3.156 MiB

Code

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,n-1,2):
            if n%j==0:
                lcm=j
                break
        print(lcm)

Information

Submit By
Type
Submission
Problem
P1052 Yet Another Array Partition
Contest
Brain Booster #3
Language
Python 3 (Python 3.12.3)
Submit At
2024-05-06 17:54:51
Judged At
2024-10-03 13:47:45
Judged By
Score
25
Total Time
71ms
Peak Memory
3.172 MiB