250x250
Notice
Recent Posts
Recent Comments
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 |
Tags
- BFS
- readingbook
- the midnight library
- 코테 대비
- 직무면접
- 원서읽자
- 코딩테스트
- englishbook
- 원서
- 코테
- 알고리즘
- STUDYENGLISH
- D4
- 프로그래머스
- SQL
- swexpertacademy
- 삼성
- dfs
- MySQL
- 알고리즘 문제
- sw expert academy
- English
- 완전탐색
- sw expert
- nightroutine
- 백준
- 원서읽기
- 쉬운 알고리즘 문제
- 코테 준비
- PyQt
Archives
- Today
- Total
시나브로
8393 합 본문
728x90
10까지의 합이면
1+2+3+4+5+6+7+8+9+10 = (1+10)+(2+9)+(3+8)+(4+7)+(5+6)= 11*5
로 표현할 수 있다.
숫자 짝수일 때는 중간의 수를 한번더 더해주면 된다.
#include<stdio.h>
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
int number = 0;
scanf("%d", &number);
int box = 0;
for (int i = 1; i <= number / 2; i++) {
box += (1+number);
}
if (number % 2 != 0) {
box += (number/2+1);
}
printf("%d", box);
return 0;
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
2075. N번째 큰 수 (0) | 2020.01.14 |
---|---|
1551. 수열의 변화 (0) | 2020.01.13 |
[백준] 체스판 다시 칠하기 (0) | 2019.12.31 |
[백준] 7568번 덩치 (0) | 2019.12.31 |
[백준] 2231번 분해합 (0) | 2019.12.31 |
Comments