居左


私信TA

用户名:JZ50

访问量:75712

签 名:

楼下你的分数已经再次被超越!!快刷!!

等  级
排  名 34
经  验 14138
参赛次数 2
文章发表 109
年  龄 0
在职情况 学生
学  校 99
专  业

  自我简介:

TA的其他文章

import java.util.Scanner;

public class C1161 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		while(sc.hasNext()){
			F(sc.nextInt(), sc.nextInt());
		}
		sc.close();
	}
	
	private static void F(int N, int M){
		int step = 0;
		String rs = String.valueOf(M), reverse = "";
		while(step <= 30){
			step++;
			//获取相反方向读取数字
			reverse = new StringBuffer(rs).reverse().toString(); 
			//获取N进制下相加得到的数字
			rs = Integer.toString(Integer.valueOf(rs, N) + Integer.valueOf(reverse, N), N); 
			if(isHuiWen(rs))
				break;
		}
		
		if(step <= 30)
			System.out.printf("STEP=%d\n", step);
		else
			System.out.println("Impossible!");
	}
	
	//判断是否为回文数
	private static boolean isHuiWen(String str){
		int len = str.length();
		for(int i = 0; i < len/2; i++){
			if(str.charAt(i) != str.charAt(len-1-i))
				return false;
		}
		return true;
	}
	
	
	
}


 

0.0分

6 人评分

  评论区

越看这代码越垃圾 实实在在的是垃圾代码
2021-12-11 14:45:48
虽然代码没错 但是可读性差一万倍 这代码特别拉胯
2021-12-11 14:43:08
  • «
  • 1
  • »