結果
問題 | No.414 衝動 |
ユーザー | takeya_okino |
提出日時 | 2019-08-19 20:05:19 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 356 bytes |
コンパイル時間 | 2,611 ms |
コンパイル使用メモリ | 76,492 KB |
実行使用メモリ | 61,824 KB |
最終ジャッジ日時 | 2024-10-04 23:53:30 |
合計ジャッジ時間 | 6,161 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
61,824 KB |
testcase_01 | AC | 128 ms
54,060 KB |
testcase_02 | AC | 133 ms
54,856 KB |
testcase_03 | AC | 137 ms
54,948 KB |
testcase_04 | AC | 137 ms
54,480 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long m = sc.nextLong(); long ans = 0; for(int i = 2; i * i <= m; i++) { if((m % i) == 0) { ans = i; break; } } if(ans == 0) ans = 1; System.out.println(ans + " " + m / ans); } }