第一题,通过100% #include <iostream> #include <stack> using namespace std; int main() { long long n; int k; cin >> k >> n; //思想就是使用9进制表示n-1,然后每位编码0~k-1, k+1~9; n--; stack<int> stk; while (n) { stk.push(n % 9); n /= 9; } lo...