[Cisco] OA 2025 start – 21 Mar (generic)

FizzBuzz Problem

Problem Description

When given a number NN, for each integer ii in the range from 1 to NN inclusive, print one value per line as follows:

  • If ii is a multiple of both 3 and 5, print FizzBuzz.
  • If ii is a multiple of 3 but not 5, print Fizz.
  • If ii is a multiple of 5 but not 3, print Buzz.
  • If ii is not a multiple of 3 or 5, print the value of ii.

Write an algorithm that follows the given instructions and prints the required output.

Problem-Solving Restrictions

  • 0<N<2×1060 < N < 2 \times 10^6

Input Description

The input consists of an integer inputNum, representing the given number (NN).

Output Description

Print a line-separated output based on the given instructions for each value ii in the set {1,2,...,N}\{1, 2, ..., N\} in ascending order.

Example

Input: 5
Output:
1
2
Fizz
4
Buzz

Let me know if you need any modifications!


Maximum Chocolates Problem

Description

Find the maximum number of chocolates that can be picked from jars with the condition that chocolates are not picked from jars next to each other.

Problem Description

There is a set of NN jars containing chocolates. Some of them may be empty. Determine the maximum number of chocolates Andrew can pick from the jars given that he cannot pick from jars next to each other.

Problem-Solving Restrictions

  • 1<N≤10001 < N \leq 1000

Input Description

  • The first line of input consists of an integer numJars, representing the number of jars (NN).
  • The next line consists of NN space-separated integers representing the number of chocolates in each jar.

Output Description

Print the maximum number of chocolates that can be picked from the jars in such a way that the chocolates are not picked from jars next to each other.

Example

Input:
6
5 30 99 60 5 10

Output:
114

Explanation

Andrew picks from the 1st (5), 3rd (99), and 6th (10) jars. So, the output is 114.

Let me know if you need any refinements!


Count of Numbers with Digit Sum Equal to Y

Problem Description

Given an integer XX, write an algorithm to find the number of integers which are less than or equal to XX and whose digits add up to YY.

Input Description

  • The first line of input consists of an integer inputNum1, representing the given number XX.
  • The next line consists of an integer inputNum2, representing the given number YY.

Output Description

Print the count of numbers whose digits add up to YY for the given number XX.

Note

If no numbers are found whose digits add up to YY for the given number XX, then print -1.

Example

Input:
20 5

Output:
2

Explanation

XX is 20 and YY is 5. There are only 2 integers ≤20\leq 20, i.e., 5 and 14, whose digits add up to 5.

Let me know if you need any modifications!


我们长期稳定承接各大科技公司如TikTok、Google、Amazon等的OA笔试代写服务,确保满分通过。如有需求,请随时联系我们。

We consistently provide professional online assessment services for major tech companies like TikTok, Google, and Amazon, guaranteeing perfect scores. Feel free to contact us if you're interested.

Leave a Reply

Your email address will not be published. Required fields are marked *