結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー htensaihtensai
提出日時 2020-06-04 13:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 42,640 KB
最終ジャッジ日時 2024-11-28 20:09:32
合計ジャッジ時間 6,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,136 KB
testcase_01 AC 158 ms
42,324 KB
testcase_02 AC 158 ms
42,032 KB
testcase_03 AC 161 ms
42,488 KB
testcase_04 AC 158 ms
42,416 KB
testcase_05 AC 159 ms
42,068 KB
testcase_06 AC 159 ms
42,308 KB
testcase_07 AC 162 ms
42,104 KB
testcase_08 AC 161 ms
42,244 KB
testcase_09 AC 159 ms
42,192 KB
testcase_10 AC 162 ms
42,296 KB
testcase_11 AC 161 ms
42,372 KB
testcase_12 AC 161 ms
42,640 KB
testcase_13 AC 164 ms
42,356 KB
testcase_14 AC 165 ms
42,332 KB
testcase_15 AC 162 ms
42,268 KB
testcase_16 AC 160 ms
42,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayDeque<Integer> stack = new ArrayDeque<>();
		for (int i = 1; i <= Math.sqrt(n); i++) {
		    if (n % i == 0) {
		        stack.push(n / i);
		        int x = n / i;
		        if ((int)(Math.sqrt(x)) * (int)(Math.sqrt(x)) == x) {
		            System.out.println((int)(Math.sqrt(x)) + " " + i);
		            return;
		        }
		    }
		}
		while (stack.size() > 0) {
		    int i = stack.pop();
		    int x = n / i;
	        if ((int)(Math.sqrt(x)) * (int)(Math.sqrt(x)) == x) {
	            System.out.println((int)(Math.sqrt(x)) + " " + i);
	            return;
	        }
		}
	}
}
0