Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Value too long for column
- tolerated
- PytestPluginManager
- 코루틴 빌더
- JanusGateway
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- python
- JanusWebRTCGateway
- JanusWebRTCServer
- 달인막창
- 오블완
- kotlin
- pytest
- table not found
- vfr video
- 티스토리챌린지
- PersistenceContext
- 개성국밥
- 깡돼후
- 자원부족
- preemption #
- 겨울 부산
- VARCHAR (1)
- 코루틴 컨텍스트
- Spring Batch
- mp4fpsmod
- taint
- k8s #kubernetes #쿠버네티스
- terminal
- JanusWebRTC
Archives
너와 나의 스토리
(BOJ) 1748 수 이어 쓰기 1 본문
반응형
#include <iostream>
#include <math.h>
#include <algorithm>
using namespace std;
int n,cnt;
long long sum;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> n;
int t = n;
while ((t/10) > 0) {
cnt++;
t /= 10;
sum += cnt*(pow(10, cnt) - pow(10, cnt - 1));
}
cnt++;
sum += cnt * (n - pow(10, cnt - 1)+1);
cout << sum << '\n';
return 0;
}
반응형
'Algorithm > 브루트 포스 (Brute-Force )' 카테고리의 다른 글
(BOJ) 17136 색종이 붙이기 (0) | 2019.05.09 |
---|---|
(BOJ) 17135 캐슬 디펜스 (0) | 2019.05.08 |
(BOJ) 1051 숫자 정사각형 (0) | 2019.02.19 |
(BOJ) 1018 체스판 다시 칠하기 (0) | 2019.02.19 |
(BOJ) 1107 리모컨 (0) | 2019.02.19 |
Comments