728x90
반응형
.
T = 10
output = ''
for test_case in range(1, T + 1):
answer = ''
z = input()
a = int(z.split()[0])
b = z.split()[1]
# a,b = input().split()
tempList = []
idx = 0
for i in range(len(b)):
tempList.append(b[i])
while (True):
if tempList[idx] == tempList[idx+1]:
del (tempList[idx: idx + 2])
a -= 2
idx -= 2
# continue
idx += 1
if idx == a-1:
break
for i in range(a):
answer += str(tempList[i])
output = output + '#' + str(test_case) + ' ' + answer + '\n'
print(output)
728x90
반응형
'Job Wanted > 코테' 카테고리의 다른 글
[백준] 2558번 - A+B - 2 (C#) (0) | 2024.12.05 |
---|---|
[백준] 2440번 - 별 찍기 - 3 (C#) (0) | 2024.12.04 |
[백준] 2475번 - 검증수 (C#) (0) | 2024.12.04 |
[백준] 10952번 - A+B - 5 (C#) (0) | 2024.12.04 |
[백준] 10871번 - X보다 작은 수 (C#) (0) | 2024.12.03 |