結果
| 問題 | No.129 お年玉(2) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-30 19:23:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 199 ms / 5,000 ms |
| コード長 | 151 bytes |
| コンパイル時間 | 105 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 12,032 KB |
| 最終ジャッジ日時 | 2024-12-16 10:14:53 |
| 合計ジャッジ時間 | 3,866 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 46 |
ソースコード
from math import factorial N = int(input()) M = int(input()) x = N // 1000 % M print((factorial(M) // factorial(x) // factorial(M - x)) % (10 ** 9))