結果
| 問題 | No.129 お年玉(2) |
| コンテスト | |
| ユーザー |
zombietan
|
| 提出日時 | 2016-05-23 16:13:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 5,000 ms |
| コード長 | 369 bytes |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 12,032 KB |
| 最終ジャッジ日時 | 2024-11-28 00:28:16 |
| 合計ジャッジ時間 | 3,063 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 46 |
ソースコード
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
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)
zombietan