結果

問題 No.414 衝動
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 22:06:04
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 389 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 61,820 KB
最終ジャッジ日時 2024-06-26 22:37:14
合計ジャッジ時間 6,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
61,820 KB
testcase_01 AC 158 ms
55,120 KB
testcase_02 AC 157 ms
55,032 KB
testcase_03 AC 174 ms
54,756 KB
testcase_04 AC 159 ms
55,000 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no414{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long m=stdIn.nextLong();
		int a=0;
		long b=0;
		boolean tf=false;
		for(int i=2;i<m;i++) {
			if(m%i==0) {
				a=i;
				b=m/i;
				tf=true;
				break;
			}
		}
		if(tf==true) System.out.println(a+" "+b);
		else System.out.println("1 "+m);
	}
}
0