結果

問題 No.129 お年玉(2)
ユーザー koyumeishikoyumeishi
提出日時 2015-01-17 00:16:22
言語 Ruby
(3.4.1)
結果
AC  
実行時間 389 ms / 5,000 ms
コード長 180 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-11-27 22:59:11
合計ジャッジ時間 8,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 389 ms
54,784 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 83 ms
12,032 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 183 ms
28,544 KB
testcase_06 AC 137 ms
24,576 KB
testcase_07 AC 205 ms
32,512 KB
testcase_08 AC 232 ms
38,400 KB
testcase_09 AC 123 ms
21,120 KB
testcase_10 AC 234 ms
38,016 KB
testcase_11 AC 151 ms
28,032 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 136 ms
24,576 KB
testcase_15 AC 129 ms
23,040 KB
testcase_16 AC 157 ms
28,288 KB
testcase_17 AC 111 ms
17,792 KB
testcase_18 AC 211 ms
33,920 KB
testcase_19 AC 284 ms
46,976 KB
testcase_20 AC 176 ms
28,544 KB
testcase_21 AC 120 ms
20,096 KB
testcase_22 AC 168 ms
28,288 KB
testcase_23 AC 226 ms
36,480 KB
testcase_24 AC 327 ms
51,456 KB
testcase_25 AC 147 ms
26,624 KB
testcase_26 AC 198 ms
29,952 KB
testcase_27 AC 183 ms
28,544 KB
testcase_28 AC 166 ms
28,416 KB
testcase_29 AC 84 ms
12,032 KB
testcase_30 AC 83 ms
12,032 KB
testcase_31 AC 84 ms
12,032 KB
testcase_32 AC 84 ms
12,160 KB
testcase_33 AC 83 ms
12,032 KB
testcase_34 AC 83 ms
12,032 KB
testcase_35 AC 83 ms
12,160 KB
testcase_36 AC 83 ms
12,032 KB
testcase_37 AC 82 ms
12,160 KB
testcase_38 AC 93 ms
13,696 KB
testcase_39 AC 92 ms
13,184 KB
testcase_40 AC 102 ms
14,976 KB
testcase_41 AC 128 ms
22,656 KB
testcase_42 AC 104 ms
15,488 KB
testcase_43 AC 85 ms
12,032 KB
testcase_44 AC 338 ms
52,480 KB
testcase_45 AC 95 ms
14,208 KB
testcase_46 AC 85 ms
11,904 KB
testcase_47 AC 288 ms
45,568 KB
testcase_48 AC 236 ms
38,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 1000000000

n = gets.to_i
m = gets.to_i

n -= ((n/m)/1000) * 1000 * m

n /= 1000


ans = 1
for i in 0...n do
	ans *= m-i
end

for i in 0...n do
	ans /= n-i
end

puts ans%MOD
0