結果

問題 No.414 衝動
ユーザー mosmos_21mosmos_21
提出日時 2017-06-23 17:46:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 335 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 70,292 KB
最終ジャッジ日時 2024-11-15 09:15:57
合計ジャッジ時間 6,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
67,712 KB
testcase_01 AC 170 ms
42,568 KB
testcase_02 AC 172 ms
42,480 KB
testcase_03 AC 331 ms
69,856 KB
testcase_04 AC 308 ms
70,292 KB
testcase_05 AC 310 ms
69,524 KB
testcase_06 AC 311 ms
69,204 KB
testcase_07 AC 152 ms
41,420 KB
testcase_08 AC 250 ms
58,476 KB
testcase_09 AC 335 ms
69,996 KB
testcase_10 AC 150 ms
41,696 KB
testcase_11 AC 189 ms
44,488 KB
testcase_12 AC 187 ms
43,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
       long n = in.nextLong();
       boolean[] pr = new boolean[(int)Math.sqrt(n) + 1];
       ArrayList<Integer> list = new ArrayList<>();
       for(int i = 2; i < pr.length; i++){
           if(pr[i]) continue;
           for(int j = 2 * i; j < pr.length; j += i){
               pr[i] = true;
           }
           list.add(i);
       }
       for(int i : list){
           if(n % i == 0){
               System.out.println(i + " " + n / i);
               return;
           }
       }
       System.out.println("1 " + n);
    }
}
0