結果
問題 | No.414 衝動 |
ユーザー | aRac |
提出日時 | 2016-11-30 20:06:41 |
言語 | Scala(Beta) (3.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 8,229 ms |
コンパイル使用メモリ | 260,156 KB |
実行使用メモリ | 64,680 KB |
最終ジャッジ日時 | 2024-06-29 20:40:59 |
合計ジャッジ時間 | 22,486 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 888 ms
64,288 KB |
testcase_02 | AC | 876 ms
64,044 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 882 ms
64,412 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 879 ms
64,228 KB |
testcase_11 | RE | - |
testcase_12 | AC | 885 ms
64,392 KB |
ソースコード
object Main { def a(n: Int): (Int, Int) = (1 to math.sqrt(n).toInt).filter(n % _ == 0).map(d => (d, n / d)).last def main(args: Array[String]) = { val ans = a(io.StdIn.readLine.toInt) println(ans._1.toString + " " + ans._2) } }