-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze II] Title: 회전, Time: 52 ms, Memory: 34008 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |