結果
問題 | No.414 衝動 |
ユーザー | Mcpu3 |
提出日時 | 2018-04-14 22:08:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 77,160 KB |
実行使用メモリ | 61,632 KB |
最終ジャッジ日時 | 2024-06-26 22:37:26 |
合計ジャッジ時間 | 6,044 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
61,632 KB |
testcase_01 | AC | 166 ms
55,076 KB |
testcase_02 | AC | 164 ms
54,980 KB |
testcase_03 | AC | 183 ms
55,144 KB |
testcase_04 | AC | 165 ms
55,188 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
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); } }