728x90
반응형
단순 문자열 문제이다.
for _ in range(int(input())):
a, b = map(int, input().split())
s = input()
res = ''.join([chr(ord('A') + ((ord(c)-ord('A'))*a + b)%26) for c in s])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11944번 NN(python) (0) | 2021.02.26 |
---|---|
백준 알고리즘 11816번 8진수, 10진수, 16진수(python) (0) | 2021.02.26 |
백준 알고리즘 15829번 Hashing(python) (0) | 2021.02.26 |
백준 알고리즘 13702번 이상한 술집(python) (0) | 2021.02.26 |
백준 알고리즘 6236번 용돈 관리(python) (0) | 2021.02.26 |