Lazy Jem CodeChef Solution

Hello coders, today we will be solving Lazy Jem CodeChef Solution whose Problem code is TALAZY. Jem is famous for his laziness at school. He always le

Hello coders, today we will be solving Lazy Jem CodeChef Solution whose Problem code is TALAZY.

Lazy Jem CodeChef Solution

Problem

Jem is famous for his laziness at school. He always leaves things to last minute. Now Jem has N problems in the assignment of "Advanced topics in algorithm" class to solved. The assignment is due tomorrow and as you may guess he hasn't touch any of the problems. Fortunately he got a plan as always.

The first step will be buying a pack of Red Bull and then to work as hard as he can. Here is how he is going to spend the remaining time:

Jem will not take a break until he finishes at least half of the remaining problems. Formally, if N is even then he will take he first break after finishing N / 2 problems. If N is odd then the break will be after he done (N + 1) / 2 problems. Each of his break will last for B minutes. Initially, he takes M minutes in solving a problem, after each break he will take twice more time in solving a problem, i.e. 2 * M minutes per problem after the first break.

Jem will start working soon and ask you to help him calculate how much time it will take until he finish the last problem!

Input

The first line contains a single integer T represents the number of test cases in the input.

Each line in the next T line contains three integers N, B and M represents a test case.

Output 

For each test case output a single line containing an integer represent how much time Jem will need (in minutes).

Constraints

  • 1 ≤ T ≤ 100
  • 1 ≤ N, B, M ≤ 108

Example

Input:

2
9 1 2
123456 123456 123456

Output:

45
131351258112

Explanation 

In the first test case, Jem will proceed as below:

  • Initially, Jem has 9 problems to solve. since it is an odd number, Jem will finish the first (9 + 1) / 2 = 5 problems with speed of 2 minutes/problem.
  • After that, Jem takes 1 minute break.
  • Now he has 4 problems to solve, which is an even number, so Jem will solve the next 4 / 2 = 2 problems. his speed after the first break has now became 4 minutes/problem.
  • Again, he takes a 1 minute break.
  • he has now 2 problems left so he do one more problem in 8 minutes.
  • He takes 1 minute break.
  • he solves the last problem in 16 minutes.

So, Jem will need time = 5 × 2 + 1 + 2 × 4 + 1 + 8 + 1 + 16 = 45

Solution - Lazy Jem CodeChef Solution 

Python 3

t = int(input())
for i in range (t):
    (n, b, m) = map(int,input().split())
    time = 0
    while (n != 0):
        if n%2 ==0:
            time += m*n//2+b
            m = 2*m
            n -= n//2
        elif n == 1:
            time += m*(n+1) // 2
            m = 2*m
            n = 0
        else:
            time += m*(n+1) // 2 + b
            m = 2*m
            n -= (n+1) // 2
    print(time)

Disclaimer: The above Problem (Lazy Jem) is generated by CodeChef but the Solution is provide by Sloth Coders.

Happy Coding !!

A Sloth Who loves to Code

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment