[알고리즘] 백준 6679 - 싱기한 네자리 숫자 (C++) [문제 링크] : https://www.acmicpc.net/problem/6679#include using namespace std;int solve(int n, int t){ int ret = 0; while(n != 0){ ret += n % t; n /= t; } return ret;}int main(){ for(int i=1000; i 알고리즘 2024.12.15