#P12949. [GCJ Farewell Round #1] ASCII Art
[GCJ Farewell Round #1] ASCII Art
题目描述
Cody-Jamal has heard about generative artificial intelligence producing art. He is excited about the new art opportunities, but also worried about human-created art being displaced. He thought a good compromise would be to use computers to create art that humans simply cannot.
Since Cody-Jamal is just beginning at computer-generated art, he started simple. He wants to create an immense string that shows the English alphabet in a doubly-repeated way, to represent its ubiquity and permanence.
Cody-Jamal wrote the following program:
for i = 1 to 1e100:
for letter = A to Z:
print letter i times
Here represents the integer . For example:
- When , the program prints .
- When , the program prints .
- When , the program prints .
Of course, Cody-Jamal's program takes a long time to finish. Can you help him know what the -th printed letter will be without waiting for it to be printed?
输入格式
The first line of the input gives the number of test cases, . test cases follow. Each test case consists of a single line with an integer .
输出格式
For each test case, output one line containing Case #x: y
, where is the test case number (starting from 1) and is the -th character printed by Cody-Jamal's program.
2
5
31
Case #1: E
Case #2: C
提示
Sample Explanation
The first 35 letters printed by Cody-Jamal's program are ABCDEFGHIJKLMNOPQRSTUVWXYZAABBCCDDE… Therefore, the 5th printed character is E and the 31st is C.
Limits
- .
Test Set 1 (9 Pts, Visible Verdict)
- .
Test Set 2 (20 Pts, Visible Verdict)
- .