/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 3.098 MiB
#2 Wrong Answer 14ms 3.121 MiB
#3 Wrong Answer 16ms 3.121 MiB

Code

def maximum_bricks(a, b, c, d):
  """
  This function calculates the maximum number of bricks that can be made
  from the given broken bricks.

  Args:
    a: Number of 1x1 bricks.
    b: Number of 1x2 bricks.
    c: Number of 1x3 bricks.
    d: Number of L-shaped bricks.

  Returns:
    The maximum number of bricks that can be made.
  """

  # One full brick requires 3x3 squares, which can be formed in the following ways:
  # - 3x1 + 1x3
  # - 1x2 + 2x1 + 1x3
  # - 2x2 + 2x1
  # - 4x1
  # - 1 L-shape + 2x1

  return min(a + c, b + 2 * a + c, 2 * b + 2 * a, 4 * a, d + 2 * a)

def main():
  t = int(input())
  for i in range(t):
    a, b, c, d = map(int, input().split())
    max_bricks_count = maximum_bricks(a, b, c, d)
    print(f"Case {i + 1}: {max_bricks_count}")

if __name__ == "__main__":
  main()

Information

Submit By
Type
Submission
Problem
P1014 FIFA World Cup 2022 Again!
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 13:43:14
Judged At
2024-11-11 03:43:38
Judged By
Score
1
Total Time
16ms
Peak Memory
3.121 MiB