CodeChef REMMAX 数字翻转后的最大数

/**
链接:https://www.codechef.com/problems/REMMAX
题意:找1,2,3,...,n中,翻转之后的数值最大的那个数
eg:  n==31  ans = 29
分析:主要是考虑这样几种情况:
    1000000
    1001999
    1003769
    1999999
    3999999
    2001111
*/

#include
#define ll long long
using namespace std;

int solved(){
    string ss;cin>>ss;
    int sz=ss.size();
    if(sz==1) return cout<>t;
    while(t--) solved();
    return 0;
}

 

你可能感兴趣的:(Code,Chef)