結果
問題 | No.414 衝動 |
ユーザー | ym678 |
提出日時 | 2016-08-28 00:20:49 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 298 bytes |
コンパイル時間 | 2,420 ms |
コンパイル使用メモリ | 76,024 KB |
実行使用メモリ | 46,916 KB |
最終ジャッジ日時 | 2024-11-08 20:05:06 |
合計ジャッジ時間 | 7,052 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 162 ms
42,292 KB |
testcase_02 | AC | 161 ms
42,464 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
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); int N = sc.nextInt(); int t = 2; for(;;){ if(N % t == 0){ break; }else{ t++; } } int ans = N / t; System.out.println(ans+" "+t); } }