そのため、入力がパンの L と B であり、出力が取得できる完全な正方形のスライス (残差なし) の量であると想定される、hackerRank チャレンジに取り組んでいます。
マーサはサブウェイで面接を受けています。インタビューのラウンドの 1 つで、彼女はサイズ 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;
}
}
}
}
}