結果

問題 No.1809 Divide NCK
ユーザー yudedakoyudedako
提出日時 2022-01-25 23:21:47
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 15,573 ms
コンパイル使用メモリ 253,720 KB
実行使用メモリ 63,296 KB
最終ジャッジ日時 2024-05-10 00:48:45
合計ジャッジ時間 51,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
63,064 KB
testcase_01 AC 889 ms
63,000 KB
testcase_02 AC 895 ms
63,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 889 ms
63,128 KB
testcase_08 AC 888 ms
62,976 KB
testcase_09 WA -
testcase_10 AC 872 ms
63,212 KB
testcase_11 AC 883 ms
63,056 KB
testcase_12 AC 887 ms
63,180 KB
testcase_13 AC 883 ms
63,028 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 898 ms
62,960 KB
testcase_17 AC 895 ms
62,960 KB
testcase_18 AC 899 ms
63,076 KB
testcase_19 AC 885 ms
62,980 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 890 ms
63,012 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 881 ms
62,904 KB
testcase_26 WA -
testcase_27 AC 887 ms
62,844 KB
testcase_28 WA -
testcase_29 AC 921 ms
63,084 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 992 ms
62,892 KB
testcase_35 WA -
testcase_36 AC 882 ms
62,928 KB
testcase_37 AC 896 ms
63,088 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.*

def calcFactorInFactorial(n: Long, m: Long): Long =
  n match
    case 0L => 0
    case _ => n / m + calcFactorInFactorial(n / m, m)

@main def main =
  val Array(n, k, m) = readLine().split(' ').map(_.toLong)
  val cFactor = calcFactorInFactorial(n, m) - calcFactorInFactorial(k, m) - calcFactorInFactorial(n - k, m)
  println(cFactor)
0