結果
| 問題 |
No.129 お年玉(2)
|
| コンテスト | |
| ユーザー |
zombietan
|
| 提出日時 | 2016-05-23 16:37:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 102 ms / 5,000 ms |
| コード長 | 268 bytes |
| コンパイル時間 | 472 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,032 KB |
| 最終ジャッジ日時 | 2024-11-28 00:31:16 |
| 合計ジャッジ時間 | 3,893 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)
surplus = floor(b)
ans = ncr(M, surplus//1000)
print(ans%1000000000)
zombietan