結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,032 KB
testcase_01 AC 365 ms
54,912 KB
testcase_02 AC 75 ms
12,288 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 77 ms
12,288 KB
testcase_05 AC 169 ms
28,544 KB
testcase_06 AC 123 ms
24,832 KB
testcase_07 AC 190 ms
32,768 KB
testcase_08 AC 219 ms
38,400 KB
testcase_09 AC 112 ms
21,248 KB
testcase_10 AC 212 ms
38,144 KB
testcase_11 AC 134 ms
28,032 KB
testcase_12 AC 76 ms
12,160 KB
testcase_13 AC 73 ms
12,160 KB
testcase_14 AC 122 ms
24,832 KB
testcase_15 AC 115 ms
23,168 KB
testcase_16 AC 144 ms
28,672 KB
testcase_17 AC 101 ms
17,792 KB
testcase_18 AC 192 ms
34,304 KB
testcase_19 AC 254 ms
47,104 KB
testcase_20 AC 155 ms
28,544 KB
testcase_21 AC 110 ms
20,096 KB
testcase_22 AC 154 ms
28,672 KB
testcase_23 AC 204 ms
36,736 KB
testcase_24 AC 292 ms
51,584 KB
testcase_25 AC 131 ms
26,752 KB
testcase_26 AC 178 ms
30,336 KB
testcase_27 AC 171 ms
28,544 KB
testcase_28 AC 152 ms
28,544 KB
testcase_29 AC 76 ms
12,160 KB
testcase_30 AC 76 ms
12,160 KB
testcase_31 AC 77 ms
12,288 KB
testcase_32 AC 75 ms
12,032 KB
testcase_33 AC 75 ms
12,160 KB
testcase_34 AC 80 ms
12,160 KB
testcase_35 AC 76 ms
12,160 KB
testcase_36 AC 76 ms
12,288 KB
testcase_37 AC 74 ms
12,160 KB
testcase_38 AC 83 ms
13,952 KB
testcase_39 AC 80 ms
13,440 KB
testcase_40 AC 92 ms
15,104 KB
testcase_41 AC 115 ms
22,784 KB
testcase_42 AC 94 ms
15,488 KB
testcase_43 AC 76 ms
12,160 KB
testcase_44 AC 304 ms
52,608 KB
testcase_45 AC 87 ms
14,336 KB
testcase_46 AC 78 ms
12,288 KB
testcase_47 AC 257 ms
45,824 KB
testcase_48 AC 214 ms
39,040 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