結果

問題 No.414 衝動
ユーザー tentententen
提出日時 2020-09-11 17:39:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 4,373 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 42,492 KB
最終ジャッジ日時 2024-11-15 09:27:50
合計ジャッジ時間 5,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
42,164 KB
testcase_01 AC 161 ms
42,488 KB
testcase_02 AC 162 ms
42,460 KB
testcase_03 AC 177 ms
42,240 KB
testcase_04 AC 159 ms
42,492 KB
testcase_05 AC 166 ms
41,840 KB
testcase_06 AC 164 ms
41,916 KB
testcase_07 AC 149 ms
41,600 KB
testcase_08 AC 160 ms
41,544 KB
testcase_09 AC 178 ms
42,108 KB
testcase_10 AC 148 ms
41,444 KB
testcase_11 AC 161 ms
42,224 KB
testcase_12 AC 160 ms
42,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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