結果

問題 No.414 衝動
ユーザー ぴろずぴろず
提出日時 2016-08-26 22:21:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 42,640 KB
最終ジャッジ日時 2024-11-15 08:58:33
合計ジャッジ時間 4,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,324 KB
testcase_01 AC 154 ms
42,412 KB
testcase_02 AC 140 ms
41,816 KB
testcase_03 AC 155 ms
42,024 KB
testcase_04 AC 155 ms
42,448 KB
testcase_05 AC 158 ms
41,552 KB
testcase_06 AC 158 ms
41,772 KB
testcase_07 AC 141 ms
41,604 KB
testcase_08 AC 144 ms
41,892 KB
testcase_09 AC 167 ms
42,640 KB
testcase_10 AC 141 ms
41,744 KB
testcase_11 AC 139 ms
41,712 KB
testcase_12 AC 152 ms
42,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no414;

import java.util.Scanner;

public class Main {

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

}
0