所以我正在做一个hackerRank挑战,其中输入是一块面包的L和B,输出应该是我能得到的完美正方形切片的数量(无残差)。
玛莎正在赛百味面试。其中一轮面试要求她将大小为 l * b 的面包切成相同的小块,这样每一块都是正方形,具有最大可能的边长,并且没有剩余的面包块。
我觉得我的代码完成了这项工作,但我不断收到错误。因为我看不出它有什么问题,所以我希望有人能帮助我指出我哪里出错了。
我的代码:
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner STDIN = new Scanner(System.in);
int l = 0;
int b = 0;
int count = STDIN.nextInt();
for(int i = 0; i<count; i++){
l = STDIN.nextInt();
b = STDIN.nextInt();
if(l>b){
check(l,b);
}
else if(b>l){
check(l,b);
}
else{
check(l,b);
}
System.out.print("\n");
}
}
public static boolean square (int n){
int sqrt = (int) Math.sqrt(n);
if(sqrt*sqrt == n){
return true;
}
else{
return false;
}
}
public static void check(int first, int second){
int mult = first*second;
if(square(first)){
System.out.print(second);
}
else if(square(second)){
System.out.print(first);
}
else{
factors(mult);
}
}
public static void factors(int n){
//int B = 0;
//int A = 0;
for(int i = 1; i<=n; i++){
if(n%i == 0){
if(square((n/i))){
System.out.print((i));
break;
}
}
}
}
}