/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 19ms 3.207 MiB
#2 Wrong Answer 22ms 3.094 MiB
#3 Accepted 21ms 3.051 MiB
#4 Wrong Answer 21ms 3.012 MiB

Code

for i in range(int(input())):
    count=0
    Brick=0
    a,b,c,d=map(int,input().split())
    if a == 0 and c == 0 and d == 0:
        print(f"Case {i + 1}: {Brick}")
    elif a == 0 and b == 0 and c == 0:
        print(f"Case {i + 1}: {Brick}")
    elif a == 0 and b == 0 and d == 0:
        count += c * 3
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif b == 0 and c == 0:
        while a >= 3 and d >= 2:
            count += 9
            a -=3
            d -=2
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif c == 0 and d == 0:
        count += a + (2 * b)
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif a==0 and d==0:
        while b>=3 and c>=1:
            count +=9
            b -=3
            c -=1
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif a == 0 and b == 0:
        while d >=2 and c >=1:
            count += 9
            d -= 2
            c -= 1
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif d == 0 and a != 0 and b != 0 and c != 0:
        count += a + (b * 2) + (c * 3)
    elif a == 0 and b != 0 and c != 0 and d != 0:
        while d >= 2 and c >= 1:
            count += 9
            d -= 2
            c -= 1
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif c == 0 and a != 0 and b != 0 and d != 0:
        while a >= 1 and b >= 1 and d >= 2:
            count += 9
            a -= 1
            b -= 1
            d -= 2
    elif b==0 and a!=0 and c!=0 and d!=0 :
        while a>=3 and c>=1 and d >=1:
            count+=9
            a -=3
            d -=1
            c -=1
        Brick = int(count/9)
        print(f"Case {i + 1}: {Brick}")
    elif a >= 1 and b >= 2 and c >= 3 and d >= 1:
        count = (a * 1) + (b * 2) + (c * 3) + (d * 3)
        Brick = int(count / 9)
        print(f"Case {i + 1}: {Brick}")
    elif a>=1 and b>=1 and c>=1 and d >=1:
        count = (a * 1) + (b * 2) + (c * 3) + (d * 3)
        Brick = int(count / 9)
        print(f"Case {i + 1}: {Brick}")








Information

Submit By
Type
Submission
Problem
P1014 FIFA World Cup 2022 Again!
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-10 12:43:47
Judged At
2024-11-11 03:43:34
Judged By
Score
2
Total Time
22ms
Peak Memory
3.207 MiB