結果

問題 No.414 衝動
ユーザー Mcpu3Mcpu3
提出日時 2018-09-20 07:52:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,296 KB
実行使用メモリ 55,012 KB
最終ジャッジ日時 2024-11-15 09:20:10
合計ジャッジ時間 5,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
54,700 KB
testcase_01 AC 165 ms
54,716 KB
testcase_02 AC 170 ms
54,976 KB
testcase_03 AC 183 ms
54,744 KB
testcase_04 AC 163 ms
54,940 KB
testcase_05 AC 170 ms
54,240 KB
testcase_06 AC 170 ms
54,276 KB
testcase_07 AC 156 ms
54,232 KB
testcase_08 AC 166 ms
54,056 KB
testcase_09 AC 178 ms
55,012 KB
testcase_10 AC 152 ms
54,256 KB
testcase_11 AC 163 ms
54,924 KB
testcase_12 AC 159 ms
54,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        long m=sc.nextLong(),i;
        sc.close();
        for(i=2;i<=(long)Math.sqrt(m);++i)if(1>m%i)break;
        if(i>(long)Math.sqrt(m))System.out.print("1 "+m);
        else System.out.print(m/i+" "+m/(m/i));
    }
}
0