結果
問題 | No.414 衝動 |
ユーザー | ym678 |
提出日時 | 2016-08-28 00:22:38 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 303 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 77,012 KB |
実行使用メモリ | 47,044 KB |
最終ジャッジ日時 | 2024-11-08 20:06:33 |
合計ジャッジ時間 | 5,684 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
47,044 KB |
testcase_01 | AC | 130 ms
41,372 KB |
testcase_02 | AC | 149 ms
42,220 KB |
testcase_03 | AC | 149 ms
42,204 KB |
testcase_04 | AC | 144 ms
42,024 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); long t = 2; for(;;){ if(N % t == 0){ break; }else{ t++; } } long ans = N / t; System.out.println(ans+" "+t); } }