3214 - I2P(I)2025_Chou_Hu_Hw1_ClassB Scoreboard

Time

2025/09/02 20:30:00 2025/09/09 18:30:00

Clarification

# Problem Asker Description Reply Replier Reply Time For all team

# Problem Pass Rate (passed user / total user)
14662 Temperature Conversions
14666 Chomusuke the Cat

14662 - Temperature Conversions   

Description

Write a program that converts a given temperature from Celsius to Fahrenheit.

The conversion formula is:

  • $F = C \times 1.8 + 32$

Where:

  • $C$ is the input Celsius temperature.
  • $F$ is the resulting Fahrenheit temperature.

You should round the result into an integer using int().

Input

A single integer $C$ representing the temperature in Celsius.

Constraints

  • $-100 \leq C \leq 100$

Output

A single integer $F$ representing the equivalent Fahrenheit temperature.

Sample Input  Download

Sample Output  Download

Tags




Discuss




14666 - Chomusuke the Cat   

Description

Megumin is curious to see how Chomusuke would appear on the computer screen.

Your task is to help her by printing out an ASCII art representation of the cat.

The output must match exactly (no extra spaces, lines, or characters), and do not print a newline after the last line.

It should look like this on your terminal:

Hint:

  • Having problem printing apostrophe ('), quotation mark ("), and backslash (\)? Maybe this link can help you.
  • Getting Wrong Answer? Make sure you don't miss any whitespace ( ).
  • Refer this article to print without newline.

Input

There is no input for this problem.

Output

Print the ASCII art of Chomusuke exactly as shown.

Sample Input  Download

Sample Output  Download

Tags




Discuss