結果

問題 No.414 衝動
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 03:50:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 497 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 76,404 KB
実行使用メモリ 42,444 KB
最終ジャッジ日時 2024-11-15 09:12:55
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
42,020 KB
testcase_01 AC 140 ms
41,600 KB
testcase_02 AC 147 ms
41,952 KB
testcase_03 AC 159 ms
42,336 KB
testcase_04 AC 136 ms
41,552 KB
testcase_05 AC 148 ms
41,348 KB
testcase_06 AC 149 ms
41,612 KB
testcase_07 AC 131 ms
40,528 KB
testcase_08 AC 137 ms
40,280 KB
testcase_09 AC 160 ms
42,168 KB
testcase_10 AC 141 ms
41,548 KB
testcase_11 AC 139 ms
42,036 KB
testcase_12 AC 151 ms
42,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long M = sc.nextLong();
        if(M%2==0){
            System.out.println(2+ " "+M/2);
            return;
        }
        long rt = (long)Math.sqrt(M);
        for(long i=3; i<=rt; i=i+2){
            if(M%i==0){
                System.out.println(i+ " "+M/i);
                return;
            }
        }
        System.out.println(M+ " "+1);
    }
}
0