백준 #31472번 갈래의 색종이 자르기

jhj·2024년 5월 20일

백준 JAVA

목록 보기
480/583
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		double w = sc.nextDouble();
		w = w + w;
		
		double a = Math.sqrt(w);
		System.out.println((int)(4 * a));
		sc.close();
	}
}
profile
개발자를 꿈꾸는

0개의 댓글