結果

問題 No.129 お年玉(2)
ユーザー simansiman
提出日時 2016-03-23 00:59:09
言語 Ruby
(3.4.1)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-11-28 00:23:52
合計ジャッジ時間 8,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
14,464 KB
testcase_01 AC 203 ms
53,504 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 134 ms
29,312 KB
testcase_06 AC 148 ms
36,480 KB
testcase_07 AC 167 ms
46,464 KB
testcase_08 AC 148 ms
31,872 KB
testcase_09 AC 159 ms
41,728 KB
testcase_10 AC 173 ms
48,384 KB
testcase_11 AC 140 ms
31,744 KB
testcase_12 AC 161 ms
38,272 KB
testcase_13 AC 168 ms
40,576 KB
testcase_14 AC 160 ms
38,912 KB
testcase_15 AC 146 ms
32,128 KB
testcase_16 AC 149 ms
36,096 KB
testcase_17 AC 168 ms
45,312 KB
testcase_18 AC 162 ms
41,856 KB
testcase_19 AC 176 ms
45,568 KB
testcase_20 AC 165 ms
45,056 KB
testcase_21 AC 188 ms
53,504 KB
testcase_22 AC 145 ms
31,744 KB
testcase_23 AC 174 ms
50,432 KB
testcase_24 AC 176 ms
47,872 KB
testcase_25 AC 139 ms
31,744 KB
testcase_26 AC 141 ms
31,744 KB
testcase_27 AC 138 ms
31,744 KB
testcase_28 AC 181 ms
53,504 KB
testcase_29 AC 87 ms
12,032 KB
testcase_30 AC 90 ms
12,288 KB
testcase_31 AC 88 ms
12,288 KB
testcase_32 AC 90 ms
12,160 KB
testcase_33 AC 92 ms
12,032 KB
testcase_34 AC 93 ms
12,160 KB
testcase_35 AC 92 ms
12,160 KB
testcase_36 AC 90 ms
12,160 KB
testcase_37 AC 92 ms
12,160 KB
testcase_38 AC 105 ms
17,792 KB
testcase_39 AC 109 ms
20,480 KB
testcase_40 AC 139 ms
31,488 KB
testcase_41 AC 120 ms
28,288 KB
testcase_42 AC 106 ms
19,584 KB
testcase_43 AC 106 ms
19,456 KB
testcase_44 AC 191 ms
53,376 KB
testcase_45 AC 100 ms
14,848 KB
testcase_46 AC 111 ms
21,888 KB
testcase_47 AC 185 ms
53,504 KB
testcase_48 AC 149 ms
32,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Integer
  def combination(k)
    self.factorial/(k.factorial*(self-k).factorial)
  end

  def permutation(k)
    self.factorial/(self-k).factorial
  end

  def factorial
    return 1 if self == 0
    (1..self).inject(:*)
  end
end

class Yukicoder
  MOD = 1000000000

  def initialize
    n = gets.to_i
    m = gets.to_i

    puts m.combination((n-m*1000*(n/m/1000))/1000) % MOD
  end
end

Yukicoder.new
0