結果

問題 No.129 お年玉(2)
ユーザー zombietan
提出日時 2016-05-23 16:11:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-07 01:28:09
合計ジャッジ時間 4,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
M = int(input())

def ncr(n, r):
    f = math.factorial
    return f(n) // f(r) // f(n - r)

def floor(src, p=1000):
    return int(src / p) * p

if N < 1000:
    print(0)
    exit()
 
a, b = divmod(N, 1000*M)

if b == 0:
    print(1)
else:
    surplus = floor(b)
    if surplus < 1000:
        print(1)
    else:
        ans = ncr(M, surplus//1000)
        print(ans%1000000000)
    
0