-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2675.py
31 lines (20 loc) · 841 Bytes
/
2675.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# [ 백준 ] 2675번: 문자열 제출
def solution() -> None:
import sys
input = sys.stdin.readline
for _ in range(int(input())):
R, S = input().split()
print("".join([character * int(R) for character in S]))
if __name__ == "__main__":
from io import StringIO
from unittest.mock import patch
def test_example_case(input: list[str]) -> str:
with patch("sys.stdin.readline", side_effect=input):
with patch("sys.stdout", new_callable=StringIO) as test_stdout:
solution()
return test_stdout.getvalue()
case: dict[str, list[str] | str] = {
"input": ["2", "3 ABC", "5 /HTP"],
"output": "AAABBBCCC\n/////HHHHHTTTTTPPPPP\n"
}
assert case["output"] == test_example_case(input=case["input"])