#include #include #include #include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int q; cin >> q; for(int z=0;z> a >> b >> c; if(c==1){ cout << -1 << endl; continue; } int ans=0; while(a){ if(a%c!=0){ ans++; if(a%c<(a/c-1)*c)a=a-a%c; else a=max(0LL,a-(c-1)); } else{ ans++; a/=c; } } cout << (ll)ans*b << endl; } }