糖果促销 思维 大佬的解法: #include<bits/stdc++.h> using namespace std; typedef long long ll; int main() {ll t;cin>>t;for(int i=0;i<t;i++){ll p,k;cin>>p>>k;if(k==0) cout<<0<<endl;else{k-=(k-1)/p;cout<<k<<endl;}}return 0; }