結果

問題 No.129 お年玉(2)
ユーザー roarisroaris
提出日時 2019-08-15 22:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 255 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 137,400 KB
最終ジャッジ日時 2024-09-19 15:41:48
合計ジャッジ時間 7,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
137,280 KB
testcase_01 AC 118 ms
137,036 KB
testcase_02 AC 121 ms
136,788 KB
testcase_03 AC 119 ms
136,856 KB
testcase_04 AC 121 ms
137,080 KB
testcase_05 AC 116 ms
137,044 KB
testcase_06 AC 118 ms
137,256 KB
testcase_07 AC 116 ms
137,184 KB
testcase_08 AC 119 ms
137,344 KB
testcase_09 AC 118 ms
137,216 KB
testcase_10 AC 120 ms
136,836 KB
testcase_11 AC 117 ms
136,796 KB
testcase_12 AC 116 ms
137,388 KB
testcase_13 AC 120 ms
136,880 KB
testcase_14 AC 118 ms
137,020 KB
testcase_15 AC 118 ms
136,796 KB
testcase_16 AC 117 ms
137,016 KB
testcase_17 AC 111 ms
137,052 KB
testcase_18 AC 120 ms
137,196 KB
testcase_19 AC 122 ms
136,968 KB
testcase_20 AC 118 ms
137,008 KB
testcase_21 AC 120 ms
137,092 KB
testcase_22 AC 116 ms
137,200 KB
testcase_23 AC 120 ms
137,040 KB
testcase_24 AC 120 ms
137,084 KB
testcase_25 AC 119 ms
137,316 KB
testcase_26 AC 116 ms
136,992 KB
testcase_27 AC 118 ms
137,088 KB
testcase_28 AC 116 ms
136,900 KB
testcase_29 AC 113 ms
137,028 KB
testcase_30 AC 116 ms
137,028 KB
testcase_31 AC 116 ms
136,992 KB
testcase_32 AC 115 ms
137,392 KB
testcase_33 AC 118 ms
137,188 KB
testcase_34 AC 115 ms
136,984 KB
testcase_35 AC 117 ms
137,072 KB
testcase_36 AC 113 ms
136,972 KB
testcase_37 AC 112 ms
136,896 KB
testcase_38 AC 116 ms
136,848 KB
testcase_39 AC 118 ms
137,136 KB
testcase_40 AC 119 ms
137,400 KB
testcase_41 AC 111 ms
136,868 KB
testcase_42 AC 116 ms
137,044 KB
testcase_43 AC 114 ms
136,936 KB
testcase_44 AC 118 ms
137,112 KB
testcase_45 AC 113 ms
136,840 KB
testcase_46 AC 113 ms
137,184 KB
testcase_47 AC 116 ms
137,064 KB
testcase_48 AC 115 ms
137,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def C(n, r):
    return fact[n] // fact[r] // fact[n-r]

fact = [1]

for i in range(1, 10001):
    fact.append(fact[-1] * i)

N = int(input())
M = int(input())
MOD = 10 ** 9
i = N // (M * 1000)
c = (N - M * 1000 * i) // 1000
ans = C(M, c) % MOD
print(ans)
0