結果

問題 No.414 衝動
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 17:21:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 1,000 ms
コード長 657 bytes
コンパイル時間 3,883 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 43,748 KB
最終ジャッジ日時 2024-11-15 09:08:52
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
43,588 KB
testcase_01 AC 160 ms
42,792 KB
testcase_02 AC 179 ms
43,748 KB
testcase_03 AC 190 ms
43,400 KB
testcase_04 AC 163 ms
42,340 KB
testcase_05 AC 174 ms
42,868 KB
testcase_06 AC 172 ms
42,648 KB
testcase_07 AC 168 ms
42,684 KB
testcase_08 AC 168 ms
42,820 KB
testcase_09 AC 190 ms
43,688 KB
testcase_10 AC 159 ms
42,572 KB
testcase_11 AC 162 ms
43,484 KB
testcase_12 AC 174 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		boolean[] b = new boolean[1000000];
		b[0] = true;
		b[1] = true;
		for(int i = 2; i < 1000; i++){
			if(!b[i]){
				for(int j = i*i; j < 100000; j+=i){
					b[j] = true;
				}
			}
		}
		long n = sc.nextLong();
		if(n < 1000000 && !b[(int)n]){
			System.out.println(1 + " " + n);
		} else if(n%2 == 0){
			System.out.println(2 + " " + n/2);
		} else {
			for(int i = 3; i < 1000000; i+=2){
				if(!b[i] && n%i == 0){
					System.out.println(i + " " + n/i);
					return;
				}
			}
			System.out.println(1 + " " + n);
		}
	}
}
0