记录编号 392061 评测结果 AAAAAAAA
题目名称 回文平方数 最终得分 100
用户昵称 Gravatarユッキー 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2017-04-06 22:31:20 内存使用 0.29 MiB
显示代码纯文本
  1. #include <cstdio>
  2. #include <cmath>
  3. int bit1[500];
  4. int bit2[500];
  5. int n;
  6. int converTo(int top,int num,int base)
  7. {
  8. top=-1;
  9. do{
  10. bit2[++top]=num%base;
  11. num/=base;
  12. }while(num>0);
  13. return top;
  14. }
  15.  
  16. int converto(int top,int num,int base)
  17. {
  18. top=-1;
  19. do{
  20. bit1[++top]=num%base;
  21. num/=base;
  22. }while(num>0);
  23. return top;
  24. }
  25. bool pd(int bit2[],int top)
  26. {
  27. int i;
  28. for(i=0;i<=top;i++)
  29. {
  30. if(bit2[i]!=bit2[top-i] && i<=top-i)
  31. return false;
  32. }
  33. return true;
  34. }
  35. int main()
  36. {
  37. freopen("palsquare.in","r",stdin);
  38. freopen("palsquare.out","w",stdout);
  39.  
  40. scanf("%d",&n);
  41. int i,j,k;
  42. for(i=1;i<=300;i++)
  43. {
  44. int tmp=i*i;
  45. int top2;
  46. int x=converTo(top2,tmp,n);
  47. if(pd(bit2,x))
  48. {
  49. int top1;
  50. int y=converto(top1,i,n);
  51. for(j=y;j>=0;j--)
  52. {
  53. if(bit1[j]>=10)
  54. {
  55. printf("%c",'A'+bit1[j]-10);
  56. continue;
  57. }
  58. printf("%d",bit1[j]);
  59. }
  60. printf(" ");
  61. for(k=x;k>=0;k--)
  62. {
  63. if(bit2[k]>=10)
  64. {
  65. printf("%c",'A'+bit2[k]-10);
  66. continue;
  67. }
  68. printf("%d",bit2[k]);
  69. }
  70. printf("\n");
  71. }
  72. }
  73. return 0;
  74. }