Skip to content

Commit

Permalink
[Bronze II] Title: 회전, Time: 52 ms, Memory: 34008 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Youn-Rha committed Aug 26, 2024
1 parent b6e7e92 commit a9c4b1a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 백준/Bronze/23813. 회전/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Bronze II] 회전 - 23813

[문제 링크](https://www.acmicpc.net/problem/23813)

### 성능 요약

메모리: 34008 KB, 시간: 52 ms

### 분류

사칙연산, 구현, 수학, 문자열

### 제출 일자

2024년 8월 27일 00:44:42

### 문제 설명

<p>정수 $N$이 주어질 때, $N$의 일의 자리 숫자를 떼서 제일 앞자리 왼쪽에 이어 붙힌 것을 $N$의 회전이라고 정의하자. 예를 들어, 12345의 회전은 51234가 된다. 3의 회전은 3이 된다. 이렇게 회전을 계속하다 보면 원래 $N$으로 돌아오게 된다. 원래 $N$으로 돌아올 때까지의 $N$을 회전하여 나온 수를 모두 더한 값을 출력하시오.</p>

### 입력

<p>모든 자리의 숫자가 다른 정수 $N$이 주어진다. 각 자리의 숫자는 1이상이고, $1 \leq N \leq 987,654,321$이다.</p>

### 출력

<p>$N$의 회전 결과들을 모두 더한 값을 출력한다. 단, 결과값을 32비트 정수형으로 처리할 수 없을 수 있음에 유의하라.</p>

19 changes: 19 additions & 0 deletions 백준/Bronze/23813. 회전/회전.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import sys
from collections import deque


# sys.setrecursionlimit(100000)


def input():
return sys.stdin.readline()


# main
if __name__ == "__main__":
N = deque(input().rstrip())
total = 0
for i in range(len(N)):
N.rotate()
total += int("".join(list(N)))
print(total)

0 comments on commit a9c4b1a

Please sign in to comment.