[BOJ 23813] 백준 23813번 - 회전
1. 문제Permalink
23813. 회전 (2021 POSTECH Programming Open Contest A번)
2. 풀이Permalink
만약 어떤 수가 abcd 라면, abcd+bcda+cdab+dabc가 답이다. (a+b+c+d)×1000 +(b+c+d+a)×100 +(c+d+a+b)×10 +(d+a+b+c)×1 =(a+b+c+d)×(1000+100+10+1)
이를 일반화시키면 정수 N이 x자리일 때, (정수 N의 각 자리수의 합) × (1이 x개인 11…1)이 된다.
3. 채점 결과Permalink
4. 회고Permalink
.
5. 코드Permalink
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
#include <bits/stdc++.h> | |
using namespace std; | |
#define FASTIO cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); | |
#define FOR(i,a,b) for(int i=(a);i<=(b);i++) | |
#define ROF(i,a,b) for(int i=(a);i>=(b);i--) | |
#define ll long long int | |
#define pii pair<int, int> | |
#define PQ priority_queue | |
#define LEN(v) int(v.size()) | |
#define ALL(v) v.begin(),v.end() | |
#define INF 2e9 | |
#define LINF 1e18 | |
int main() { | |
FASTIO; | |
ll N; | |
cin >> N; | |
string s = to_string(N); | |
ll sum = 0; | |
FOR(i, 0, LEN(s) - 1) { | |
sum += (s[i] - '0'); | |
} | |
ll tmp = 1; | |
FOR(i, 1, LEN(s) - 1) { | |
tmp = tmp * 10 + 1; | |
} | |
cout << sum * tmp; | |
return 0; | |
} |
댓글남기기