t = int(input())
for tc in range(1, t + 1):
n = int(input())
arr = [False]*10
j = 1
cnt = 0
while cnt != 10:
sleep = str(n*j)
for i in sleep:
if arr[int(i)] == False:
arr[int(i)] = True
cnt += 1
j += 1
print(f"#{tc} {n*(j-1)}")
'문제풀이 > SW Expert Academy' 카테고리의 다른 글
[SWEA][D3] 4406. 모음이 보이지 않는 사람 (파이썬/Python) (0) | 2021.10.11 |
---|---|
[SWEA][D3] 3431. 준환이의 운동관리 (파이썬/Python) (0) | 2021.10.11 |
[SWEA][D2] 1928. Base64 Decoder (파이썬/Python) (0) | 2021.10.10 |
[SWEA][D2] 1945. 간단한 소인수분해 (파이썬/Python) (0) | 2021.10.08 |
[SWEA][D2] 1946. 간단한 압축 풀기 (파이썬/Python) (0) | 2021.10.08 |