結果

問題 No.414 衝動
ユーザー fjafjafjafjafjafja
提出日時 2017-09-03 15:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 1,000 ms
コード長 401 bytes
コンパイル時間 3,378 ms
コンパイル使用メモリ 76,292 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-11-15 09:17:17
合計ジャッジ時間 6,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,992 KB
testcase_01 AC 150 ms
42,276 KB
testcase_02 AC 151 ms
42,228 KB
testcase_03 AC 160 ms
42,144 KB
testcase_04 AC 153 ms
42,332 KB
testcase_05 AC 162 ms
42,460 KB
testcase_06 AC 160 ms
42,564 KB
testcase_07 AC 152 ms
42,196 KB
testcase_08 AC 162 ms
42,296 KB
testcase_09 AC 166 ms
42,396 KB
testcase_10 AC 164 ms
42,432 KB
testcase_11 AC 152 ms
42,480 KB
testcase_12 AC 152 ms
42,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N414 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		long M=sc.nextLong();
		int end=0;
		long ans1=1;
		long ans2=M;
		if(M%2==0){ans1=2;ans2=M/2;}
		else
		{
			for(int i=3;i<=(int)Math.sqrt((double)M);i+=2)
			{
				if(M%i==0){ans1=i;ans2=M/i;break;}
			}
		}
		System.out.println(ans1+" "+ans2);
	}
}
0