페이지

1110번: 더하기 사이클

https://www.acmicpc.net/problem/1110


$O(n)$

그냥 구현 문제


#include<stdio.h>
int n, t, cnt;
int main() {
    scanf("%d", &n);
    t = n;
    do {
        t = t % 10 * 10 + (t / 10 + t % 10) % 10;
        cnt++;
    } while (t^n);
    printf("%d", cnt);
    return 0;
}

댓글 없음 :

댓글 쓰기