본문 바로가기
알고리즘/소스코드

KOREATECH 1119: 제스쳐 컨트롤 II

by cjw.git 2020. 12. 16.

Link : judge.koreatech.ac.kr/problem.php?id=1119


Python

더보기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from sys import stdin
 
case_cnt = int(stdin.readline().strip())
 
for _ in range(case_cnt):
    data = stdin.readline().strip().split(' ')
    pos = 0
    for s in data[1]:
        if s == 'L':
            pos += 1
        elif s == 'R':
            pos -= 1
 
    for i in range(len(data[0])):
        print(data[0][(i + pos) % len(data[0])], end='')
    print()
cs

FeedBack

  1.  

 

 

 

cjw.git@gmail.com

댓글