結果

問題 No.129 お年玉(2)
ユーザー 小指が強い人小指が強い人
提出日時 2015-12-05 01:37:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-11-28 00:09:43
合計ジャッジ時間 7,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 199 ms
51,968 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 132 ms
34,816 KB
testcase_06 AC 111 ms
23,808 KB
testcase_07 AC 136 ms
35,200 KB
testcase_08 AC 145 ms
38,656 KB
testcase_09 AC 110 ms
21,888 KB
testcase_10 AC 149 ms
35,072 KB
testcase_11 AC 119 ms
25,728 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 AC 90 ms
12,288 KB
testcase_14 AC 110 ms
24,064 KB
testcase_15 AC 110 ms
23,680 KB
testcase_16 AC 118 ms
26,112 KB
testcase_17 AC 102 ms
18,304 KB
testcase_18 AC 138 ms
35,072 KB
testcase_19 AC 165 ms
47,104 KB
testcase_20 AC 123 ms
30,976 KB
testcase_21 AC 104 ms
20,224 KB
testcase_22 AC 121 ms
28,928 KB
testcase_23 AC 141 ms
35,072 KB
testcase_24 AC 178 ms
47,104 KB
testcase_25 AC 116 ms
25,344 KB
testcase_26 AC 133 ms
35,072 KB
testcase_27 AC 127 ms
34,944 KB
testcase_28 AC 118 ms
26,240 KB
testcase_29 AC 90 ms
12,160 KB
testcase_30 AC 90 ms
12,288 KB
testcase_31 AC 92 ms
12,160 KB
testcase_32 AC 91 ms
12,288 KB
testcase_33 AC 89 ms
12,160 KB
testcase_34 AC 87 ms
12,160 KB
testcase_35 AC 93 ms
12,288 KB
testcase_36 AC 89 ms
12,288 KB
testcase_37 AC 89 ms
12,288 KB
testcase_38 AC 94 ms
13,184 KB
testcase_39 AC 93 ms
13,184 KB
testcase_40 AC 97 ms
15,488 KB
testcase_41 AC 108 ms
23,552 KB
testcase_42 AC 98 ms
17,024 KB
testcase_43 AC 91 ms
12,416 KB
testcase_44 AC 177 ms
47,616 KB
testcase_45 AC 98 ms
14,080 KB
testcase_46 AC 90 ms
12,160 KB
testcase_47 AC 163 ms
47,488 KB
testcase_48 AC 148 ms
38,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
m = gets.to_i
d1 = (n / m) / 1000 * 1000
d2 = n - d1 * m
c = d2 / 1000
q1 = 1
q2 = 1
c.times do |x|
    q1 *= (x + 1)
    q2 *= m - x
end
puts (q2 / q1) % 1000000000
0