1,0 2,1 4,2,0 1,2,0 1 10,6,4,2,1 0 0
1,0,1 1,1,1,0 1,0,0,0,0,0
題意: 略
題解: 大數問題。用一個數組ans 存放各個數位的進制,兩個數組N1 N2分別保存兩個火星數。在編程實現方面,主要是開頭的輸入需要一點技巧。
AC代碼:
#include#include #include #include using namespace std; bool prime(int k){ if(k==2||k==3) return true; for(int i=2;i<=(int)sqrt(float(k));i++) if(k%i==0) return false; return true; } const int Max=55; int num1[Max],num2[Max],N1[Max],N2[Max],posx=0,posy=0,temp; int ans[60+5]; char ch; int main(){ int tpos=0; for(int i=2;tpos<56;i++) if(prime(i)) ans[tpos++]=i; while(1){ posx=0,posy=0; memset(N1,0,sizeof(N1)); memset(N2,0,sizeof(N2)); while(1){ scanf(%d,&temp); ch=getchar();num1[posx++]=temp; if(ch==' ')break; } while(1){ scanf(%d,&temp); ch=getchar(); num2[posy++]=temp; if(ch==' ')break; } //posx++; posy++; if((posx==1&&!num1[0])||(posy==1&&!num2[0])) return 0; for(int i=posx-1;i>=0;i--) N1[posx-i-1]=num1[i]; for(int i=posy-1;i>=0;i--) N2[posy-i-1]=num2[i]; for(int i=0;i =ans[i]){ N1[i+1]++; N1[i]%=ans[i]; } } int k; for(k=Max-3;k>0&&!N1[k];)k--; for(;k>0;k--) printf(%d,,N1[k]); printf(%d ,N1[0]); } }