# | Problem | Pass Rate (passed user / total user) |
---|---|---|
13250 | Incense Sticks |
|
13251 | Deeper learning |
|
Description
Taiwanese people burn incense sticks at Chungyuan Pu Tu.
However, due to COVID-19, we may need to burn incense sticks on the internet.
This is how we do it:
\|/ \|/ \|/
("_____")
The incense sticks consist of three lines :
The first line includes four whitespaces and three pairs of (\|/).
The second line includes a pair of brackets(()
), a pair of quotation marks ("
), and 5 underscores (_).
The third line includes 4 whitespaces, two pairs of brackets(()
), and two pairs of carets(^).
Remember to put a new line character in the end of each line.
(gray dots represent whitespace characters)
Very Important Notes
-
Getting compile error? Having problem printing quotation mark (
"
)? Maybe this link can help you. -
Getting Wrong Answer? Make sure you don't miss any whitespace (
\n
) character.
Input
Output
Print the incense sticks.
Sample Input Download
Sample Output Download
Tags
Discuss
Description
In Minecraft, players can use different kinds of blocks to create various buildings.
Given 3 integers, A, B, and C, you are asked to answer 2 individual questions about a given valley:
1. A means the target height of the valley, B means the number of blocks in the current valley, and C means the length of each block. How many blocks should we mine to reach the target height A? Note that A is guaranteed to be the multiple of C.
2. A means the length of the valley, B means the width of the valley, and C means the height of the valley. What is the volume V of the valley. Note that different from the question 1, the unit of A, B, C, and V in this question is block.
Input
A, B, C separated by a whitesapce.
(1 <= A, B, C <=1000)
Output
The answer of the 2 questions separated by a whitespace.
Note that you need to print '\n' at the end of the output.