結果

問題 No.414 衝動
ユーザー aRacaRac
提出日時 2016-11-30 20:13:02
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 7,450 ms
コンパイル使用メモリ 266,728 KB
実行使用メモリ 64,544 KB
最終ジャッジ日時 2024-06-29 20:41:46
合計ジャッジ時間 19,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 772 ms
64,384 KB
testcase_01 AC 772 ms
64,060 KB
testcase_02 AC 775 ms
64,188 KB
testcase_03 AC 803 ms
64,288 KB
testcase_04 AC 794 ms
64,392 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 776 ms
64,540 KB
testcase_08 WA -
testcase_09 AC 795 ms
64,092 KB
testcase_10 AC 786 ms
64,076 KB
testcase_11 AC 776 ms
64,264 KB
testcase_12 AC 789 ms
64,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {
    def a(n: Double): (Int, Int) = (1 to math.sqrt(n).toInt).filter(n % _ == 0).map(d => (d, (n / d).toInt)).last
    def main(args: Array[String]) = {
        val ans = a(io.StdIn.readLine.toDouble)
        println(ans._1.toString + " " + ans._2)
    }
}
0