結果

問題 No.129 お年玉(2)
ユーザー tkzw_21tkzw_21
提出日時 2015-03-01 14:08:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-05-05 22:19:05
合計ジャッジ時間 6,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 174 ms
50,560 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 126 ms
34,432 KB
testcase_06 AC 94 ms
23,808 KB
testcase_07 AC 114 ms
34,688 KB
testcase_08 AC 126 ms
37,760 KB
testcase_09 AC 90 ms
21,760 KB
testcase_10 AC 130 ms
34,944 KB
testcase_11 AC 107 ms
25,472 KB
testcase_12 AC 85 ms
12,288 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 98 ms
23,936 KB
testcase_15 AC 97 ms
23,552 KB
testcase_16 AC 100 ms
25,856 KB
testcase_17 AC 87 ms
18,432 KB
testcase_18 AC 121 ms
34,816 KB
testcase_19 AC 142 ms
46,464 KB
testcase_20 AC 109 ms
30,720 KB
testcase_21 AC 89 ms
20,352 KB
testcase_22 AC 104 ms
28,928 KB
testcase_23 AC 120 ms
34,816 KB
testcase_24 AC 144 ms
46,208 KB
testcase_25 AC 97 ms
24,960 KB
testcase_26 AC 116 ms
34,560 KB
testcase_27 AC 117 ms
34,688 KB
testcase_28 AC 102 ms
26,112 KB
testcase_29 AC 77 ms
12,288 KB
testcase_30 AC 76 ms
12,288 KB
testcase_31 AC 76 ms
12,288 KB
testcase_32 AC 76 ms
12,288 KB
testcase_33 AC 78 ms
12,288 KB
testcase_34 AC 75 ms
12,160 KB
testcase_35 AC 74 ms
12,032 KB
testcase_36 AC 80 ms
12,160 KB
testcase_37 AC 82 ms
12,032 KB
testcase_38 AC 80 ms
13,184 KB
testcase_39 AC 82 ms
13,184 KB
testcase_40 AC 87 ms
15,488 KB
testcase_41 AC 91 ms
23,424 KB
testcase_42 AC 86 ms
17,024 KB
testcase_43 AC 75 ms
12,288 KB
testcase_44 AC 146 ms
46,720 KB
testcase_45 AC 80 ms
13,824 KB
testcase_46 AC 90 ms
12,288 KB
testcase_47 AC 142 ms
47,104 KB
testcase_48 AC 124 ms
38,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def combi(n,m)
	a = b = 1
	for i in 1..m
		a *= i
		b *= i+n-m
	end
	return b/a
end

n = gets.to_i
m = gets.to_i

amari = (n - n/1000/m*1000*m)/1000
p combi(m,amari)%1000000000
0