結果

問題 No.1737 One to N
ユーザー yudedakoyudedako
提出日時 2022-01-25 13:30:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 961 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 11,309 ms
コンパイル使用メモリ 259,744 KB
実行使用メモリ 64,492 KB
最終ジャッジ日時 2024-12-16 02:14:49
合計ジャッジ時間 37,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 818 ms
64,228 KB
testcase_01 AC 857 ms
64,280 KB
testcase_02 AC 828 ms
64,132 KB
testcase_03 AC 816 ms
64,356 KB
testcase_04 AC 817 ms
64,316 KB
testcase_05 AC 807 ms
64,492 KB
testcase_06 AC 834 ms
64,244 KB
testcase_07 AC 846 ms
64,068 KB
testcase_08 AC 803 ms
64,316 KB
testcase_09 AC 816 ms
64,164 KB
testcase_10 AC 818 ms
64,152 KB
testcase_11 AC 810 ms
64,296 KB
testcase_12 AC 793 ms
64,160 KB
testcase_13 AC 830 ms
64,288 KB
testcase_14 AC 793 ms
64,304 KB
testcase_15 AC 804 ms
64,324 KB
testcase_16 AC 799 ms
64,432 KB
testcase_17 AC 794 ms
64,424 KB
testcase_18 AC 809 ms
64,384 KB
testcase_19 AC 828 ms
64,408 KB
testcase_20 AC 805 ms
64,276 KB
testcase_21 AC 815 ms
64,356 KB
testcase_22 AC 806 ms
64,228 KB
testcase_23 AC 805 ms
64,036 KB
testcase_24 AC 961 ms
64,220 KB
testcase_25 AC 867 ms
64,424 KB
testcase_26 AC 806 ms
64,376 KB
testcase_27 AC 844 ms
64,404 KB
testcase_28 AC 835 ms
64,216 KB
testcase_29 AC 830 ms
64,152 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