結果

問題 No.414 衝動
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-26 21:48:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 76,676 KB
実行使用メモリ 42,612 KB
最終ジャッジ日時 2024-11-15 09:18:24
合計ジャッジ時間 5,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
42,416 KB
testcase_01 AC 161 ms
42,392 KB
testcase_02 AC 168 ms
42,260 KB
testcase_03 AC 180 ms
42,460 KB
testcase_04 AC 167 ms
42,228 KB
testcase_05 AC 169 ms
41,608 KB
testcase_06 AC 167 ms
41,452 KB
testcase_07 AC 150 ms
41,632 KB
testcase_08 AC 159 ms
41,716 KB
testcase_09 AC 179 ms
42,612 KB
testcase_10 AC 151 ms
41,596 KB
testcase_11 AC 166 ms
42,180 KB
testcase_12 AC 164 ms
42,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

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