結果

問題 No.1737 One to N
ユーザー yudedakoyudedako
提出日時 2022-01-25 13:30:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 949 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 11,845 ms
コンパイル使用メモリ 260,992 KB
実行使用メモリ 62,828 KB
最終ジャッジ日時 2024-05-09 13:00:30
合計ジャッジ時間 41,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 885 ms
62,348 KB
testcase_01 AC 907 ms
62,828 KB
testcase_02 AC 908 ms
62,628 KB
testcase_03 AC 937 ms
62,700 KB
testcase_04 AC 949 ms
62,696 KB
testcase_05 AC 938 ms
62,652 KB
testcase_06 AC 949 ms
62,356 KB
testcase_07 AC 917 ms
62,396 KB
testcase_08 AC 919 ms
62,728 KB
testcase_09 AC 946 ms
62,720 KB
testcase_10 AC 914 ms
62,696 KB
testcase_11 AC 925 ms
62,368 KB
testcase_12 AC 923 ms
62,704 KB
testcase_13 AC 914 ms
62,720 KB
testcase_14 AC 917 ms
62,652 KB
testcase_15 AC 918 ms
62,752 KB
testcase_16 AC 910 ms
62,580 KB
testcase_17 AC 928 ms
62,540 KB
testcase_18 AC 912 ms
62,628 KB
testcase_19 AC 925 ms
62,792 KB
testcase_20 AC 906 ms
62,684 KB
testcase_21 AC 920 ms
62,536 KB
testcase_22 AC 921 ms
62,516 KB
testcase_23 AC 919 ms
62,644 KB
testcase_24 AC 920 ms
62,748 KB
testcase_25 AC 920 ms
62,636 KB
testcase_26 AC 926 ms
62,568 KB
testcase_27 AC 914 ms
62,728 KB
testcase_28 AC 943 ms
62,356 KB
testcase_29 AC 910 ms
62,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*



def primeFactors(value: Int): List[Int] =
  def inner(v: Int, p: Int): List[Int] =
    v match
      case 1 => Nil
      case _ if p * p > v => v::Nil
      case _ if v % p == 0 => p::inner(v / p, p)
      case _ => inner(v, p + 1)
  inner(value, 2)

@main def main =
  val n = readLine().toInt
  val factor = primeFactors(n)
  println(factor.sum)
0