/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 13ms 2.914 MiB
#2 Accepted 14ms 2.918 MiB
#3 Accepted 14ms 2.926 MiB
#4 Accepted 14ms 3.062 MiB
#5 Accepted 15ms 3.066 MiB
#6 Accepted 14ms 3.109 MiB
#7 Wrong Answer 14ms 3.02 MiB

Code

a,b,c= map(int, input().split())
d,e,f= map(int, input().split())
if 1<=a<=10**6 and 1<=b<=10**6 and 1<=c<=10**6 and 1<=d<=10**6 and 1<= e <=10**6 and 1<=f <=10**6:
    if b%a > d%e:
        print("Alice")
    elif b%a < d%e:
        print("Bob")
    elif not (b%a > d%e):
        print("Bob")
    else:
        print("Draw")

Information

Submit By
Type
Submission
Problem
P1177 Remainder Game
Contest
Intra LU IEEE Beginner Programming Contest
Language
Python 3 (Python 3.12.3)
Submit At
2025-02-26 06:22:00
Judged At
2025-02-26 06:22:00
Judged By
Score
25
Total Time
15ms
Peak Memory
3.109 MiB