15633 : Fan Death

풀이

답에서 *5-24하면 되는데 왜 그러는지 모름

ㅋㅋ

코드

#include <cstdio>
int n, r;
int main() {
    scanf("%d", &n);
    for (int i = 1; i <= n; i++) {
        if (n % i == 0) r += i;
    }
    printf("%d", r*5-24);
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-09-17 12:30

Read more posts by this author