結果

問題 No.129 お年玉(2)
ユーザー simansiman
提出日時 2016-03-23 00:59:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-05-05 22:59:36
合計ジャッジ時間 8,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
14,464 KB
testcase_01 AC 179 ms
53,504 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 75 ms
12,288 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 114 ms
29,184 KB
testcase_06 AC 127 ms
36,736 KB
testcase_07 AC 145 ms
46,464 KB
testcase_08 AC 129 ms
32,512 KB
testcase_09 AC 144 ms
41,984 KB
testcase_10 AC 146 ms
48,512 KB
testcase_11 AC 115 ms
31,872 KB
testcase_12 AC 134 ms
38,400 KB
testcase_13 AC 145 ms
40,832 KB
testcase_14 AC 128 ms
39,168 KB
testcase_15 AC 128 ms
32,000 KB
testcase_16 AC 126 ms
36,352 KB
testcase_17 AC 141 ms
45,568 KB
testcase_18 AC 138 ms
42,112 KB
testcase_19 AC 145 ms
45,696 KB
testcase_20 AC 140 ms
45,312 KB
testcase_21 AC 167 ms
53,376 KB
testcase_22 AC 123 ms
31,872 KB
testcase_23 AC 148 ms
50,304 KB
testcase_24 AC 155 ms
47,744 KB
testcase_25 AC 121 ms
31,872 KB
testcase_26 AC 120 ms
31,872 KB
testcase_27 AC 123 ms
31,744 KB
testcase_28 AC 159 ms
53,632 KB
testcase_29 AC 76 ms
12,288 KB
testcase_30 AC 75 ms
12,416 KB
testcase_31 AC 75 ms
12,160 KB
testcase_32 AC 74 ms
12,416 KB
testcase_33 AC 79 ms
12,160 KB
testcase_34 AC 77 ms
12,288 KB
testcase_35 AC 77 ms
12,288 KB
testcase_36 AC 77 ms
12,288 KB
testcase_37 AC 83 ms
12,288 KB
testcase_38 AC 90 ms
17,792 KB
testcase_39 AC 94 ms
20,736 KB
testcase_40 AC 121 ms
31,360 KB
testcase_41 AC 110 ms
28,288 KB
testcase_42 AC 94 ms
19,584 KB
testcase_43 AC 94 ms
19,328 KB
testcase_44 AC 160 ms
53,504 KB
testcase_45 AC 86 ms
15,232 KB
testcase_46 AC 100 ms
22,144 KB
testcase_47 AC 160 ms
53,632 KB
testcase_48 AC 130 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