Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
41651 | YOYOLEE-李昕颖 | 回文数 | C++ | 运行超时 | 1000 MS | 244 KB | 655 | 2024-02-22 20:58:56 |
#include<bits/stdc++.h> using namespace std; int main() { int n,c=-1; bool flag=true; char m[100],dm[100],ds[1000],s[1000]; cin>>n; while(cin>>m[++c]); for(int i=1; ;i++){ for(int j=c;j>=0;j--){ dm[c-j]=m[j]; } for(int j=c;j>=0;j--){ s[j]=dm[j]+m[j]; if(s[j]>=n){ s[j]-=n; s[j-1]++; } } for(int j=c+1;j>=0;j--){ if(j==0&&s[j]==0){ break; } ds[c-j]=s[j]; } for(int j=c;j>=0;j--){ if(dm[j]!=s[j]) flag=false; } if(flag==false) continue; else if(flag==true&&i>=30){ cout<<"Impossible!"; return 0; } else{ cout<<"STEP="<<i; return 0; } } }