結果

問題 No.414 衝動
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 21:35:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 76,676 KB
実行使用メモリ 42,608 KB
最終ジャッジ日時 2024-11-15 09:07:16
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,412 KB
testcase_01 AC 159 ms
42,352 KB
testcase_02 AC 162 ms
42,504 KB
testcase_03 AC 176 ms
42,536 KB
testcase_04 AC 164 ms
42,556 KB
testcase_05 AC 180 ms
42,528 KB
testcase_06 AC 174 ms
42,248 KB
testcase_07 AC 162 ms
42,376 KB
testcase_08 AC 179 ms
42,608 KB
testcase_09 AC 173 ms
42,384 KB
testcase_10 AC 161 ms
42,484 KB
testcase_11 AC 160 ms
42,232 KB
testcase_12 AC 163 ms
42,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			long M = sc.nextLong();
			long ans = 1;
			for(long i = 2; i*i <= M; i++) {
				if(M % i == 0) {
					ans = i;
					M /= i;
					break;
				}
			}
			System.out.println(ans + " " + M);
			
		}
		
}
0