結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 182 ms
51,840 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 80 ms
12,288 KB
testcase_05 AC 113 ms
35,072 KB
testcase_06 AC 97 ms
24,064 KB
testcase_07 AC 114 ms
35,328 KB
testcase_08 AC 127 ms
38,656 KB
testcase_09 AC 90 ms
21,632 KB
testcase_10 AC 123 ms
35,072 KB
testcase_11 AC 101 ms
25,728 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 76 ms
12,160 KB
testcase_14 AC 94 ms
23,936 KB
testcase_15 AC 99 ms
23,680 KB
testcase_16 AC 104 ms
25,984 KB
testcase_17 AC 92 ms
18,304 KB
testcase_18 AC 121 ms
35,072 KB
testcase_19 AC 145 ms
46,976 KB
testcase_20 AC 108 ms
30,720 KB
testcase_21 AC 88 ms
20,224 KB
testcase_22 AC 103 ms
28,928 KB
testcase_23 AC 118 ms
35,072 KB
testcase_24 AC 151 ms
47,488 KB
testcase_25 AC 97 ms
25,472 KB
testcase_26 AC 113 ms
34,816 KB
testcase_27 AC 110 ms
34,944 KB
testcase_28 AC 100 ms
26,112 KB
testcase_29 AC 75 ms
12,160 KB
testcase_30 AC 79 ms
12,416 KB
testcase_31 AC 77 ms
12,160 KB
testcase_32 AC 77 ms
12,032 KB
testcase_33 AC 77 ms
12,416 KB
testcase_34 AC 78 ms
12,160 KB
testcase_35 AC 77 ms
12,032 KB
testcase_36 AC 79 ms
12,288 KB
testcase_37 AC 77 ms
12,160 KB
testcase_38 AC 83 ms
13,184 KB
testcase_39 AC 87 ms
13,056 KB
testcase_40 AC 93 ms
15,616 KB
testcase_41 AC 92 ms
23,552 KB
testcase_42 AC 82 ms
17,024 KB
testcase_43 AC 76 ms
12,416 KB
testcase_44 AC 152 ms
47,360 KB
testcase_45 AC 79 ms
13,952 KB
testcase_46 AC 77 ms
12,288 KB
testcase_47 AC 142 ms
47,488 KB
testcase_48 AC 126 ms
38,784 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