結果

問題 No.129 お年玉(2)
ユーザー 👑 KazunKazun
提出日時 2021-01-04 17:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 190 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 66,056 KB
最終ジャッジ日時 2024-10-15 02:55:30
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,868 KB
testcase_01 AC 36 ms
53,320 KB
testcase_02 AC 39 ms
53,724 KB
testcase_03 AC 34 ms
52,272 KB
testcase_04 AC 35 ms
52,892 KB
testcase_05 AC 37 ms
53,892 KB
testcase_06 AC 49 ms
63,080 KB
testcase_07 AC 51 ms
62,892 KB
testcase_08 AC 37 ms
52,504 KB
testcase_09 AC 48 ms
61,200 KB
testcase_10 AC 47 ms
61,208 KB
testcase_11 AC 47 ms
62,140 KB
testcase_12 AC 37 ms
53,288 KB
testcase_13 AC 35 ms
52,872 KB
testcase_14 AC 50 ms
62,780 KB
testcase_15 AC 48 ms
62,456 KB
testcase_16 AC 50 ms
63,380 KB
testcase_17 AC 44 ms
60,688 KB
testcase_18 AC 48 ms
61,384 KB
testcase_19 AC 38 ms
58,952 KB
testcase_20 AC 54 ms
65,400 KB
testcase_21 AC 46 ms
61,800 KB
testcase_22 AC 47 ms
61,292 KB
testcase_23 AC 49 ms
61,724 KB
testcase_24 AC 34 ms
52,744 KB
testcase_25 AC 51 ms
61,904 KB
testcase_26 AC 43 ms
60,336 KB
testcase_27 AC 43 ms
60,268 KB
testcase_28 AC 58 ms
66,056 KB
testcase_29 AC 34 ms
53,220 KB
testcase_30 AC 35 ms
52,692 KB
testcase_31 AC 37 ms
52,628 KB
testcase_32 AC 36 ms
53,896 KB
testcase_33 AC 37 ms
52,264 KB
testcase_34 AC 33 ms
52,484 KB
testcase_35 AC 34 ms
52,372 KB
testcase_36 AC 35 ms
52,324 KB
testcase_37 AC 35 ms
51,992 KB
testcase_38 AC 40 ms
58,860 KB
testcase_39 AC 42 ms
58,292 KB
testcase_40 AC 42 ms
59,488 KB
testcase_41 AC 42 ms
59,628 KB
testcase_42 AC 38 ms
59,300 KB
testcase_43 AC 35 ms
52,624 KB
testcase_44 AC 42 ms
59,268 KB
testcase_45 AC 37 ms
53,384 KB
testcase_46 AC 35 ms
52,636 KB
testcase_47 AC 45 ms
61,132 KB
testcase_48 AC 36 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def nCr(n,r):
    r=min(r,n-r)
    X=1
    for i in range(1,r+1):
        X*=n-i+1
        X//=i
    return X%Mod
N=int(input())
M=int(input())
Mod=10**9


R=N%(1000*M)//1000
print(nCr(M,R))
0