結果

問題 No.129 お年玉(2)
ユーザー Mao-betaMao-beta
提出日時 2024-03-14 18:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,554 ms / 5,000 ms
コード長 928 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 493,832 KB
最終ジャッジ日時 2024-09-29 23:46:21
合計ジャッジ時間 36,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
95,488 KB
testcase_01 AC 1,548 ms
493,832 KB
testcase_02 AC 41 ms
56,524 KB
testcase_03 AC 40 ms
56,664 KB
testcase_04 AC 40 ms
56,868 KB
testcase_05 AC 673 ms
247,360 KB
testcase_06 AC 1,036 ms
345,820 KB
testcase_07 AC 1,228 ms
409,416 KB
testcase_08 AC 855 ms
300,488 KB
testcase_09 AC 1,132 ms
380,212 KB
testcase_10 AC 1,259 ms
420,256 KB
testcase_11 AC 842 ms
292,480 KB
testcase_12 AC 1,068 ms
359,092 KB
testcase_13 AC 1,108 ms
372,604 KB
testcase_14 AC 1,083 ms
361,812 KB
testcase_15 AC 875 ms
311,080 KB
testcase_16 AC 1,013 ms
342,948 KB
testcase_17 AC 1,214 ms
401,752 KB
testcase_18 AC 1,173 ms
383,300 KB
testcase_19 AC 1,245 ms
404,252 KB
testcase_20 AC 1,220 ms
401,692 KB
testcase_21 AC 1,537 ms
483,484 KB
testcase_22 AC 911 ms
303,336 KB
testcase_23 AC 1,355 ms
433,008 KB
testcase_24 AC 1,310 ms
417,152 KB
testcase_25 AC 859 ms
292,276 KB
testcase_26 AC 853 ms
297,712 KB
testcase_27 AC 827 ms
292,352 KB
testcase_28 AC 1,554 ms
488,740 KB
testcase_29 AC 44 ms
56,380 KB
testcase_30 AC 40 ms
55,712 KB
testcase_31 AC 43 ms
62,480 KB
testcase_32 AC 44 ms
62,288 KB
testcase_33 AC 63 ms
78,264 KB
testcase_34 AC 52 ms
68,680 KB
testcase_35 AC 64 ms
78,424 KB
testcase_36 AC 68 ms
78,412 KB
testcase_37 AC 70 ms
78,312 KB
testcase_38 AC 220 ms
120,472 KB
testcase_39 AC 297 ms
144,968 KB
testcase_40 AC 768 ms
276,804 KB
testcase_41 AC 476 ms
196,548 KB
testcase_42 AC 225 ms
126,008 KB
testcase_43 AC 228 ms
125,880 KB
testcase_44 AC 1,551 ms
491,452 KB
testcase_45 AC 146 ms
101,264 KB
testcase_46 AC 316 ms
153,096 KB
testcase_47 AC 1,495 ms
475,380 KB
testcase_48 AC 909 ms
313,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    M = NI()
    R = N // 1000 % M
    C = [[] for _ in range(M+1)]
    mod = 10**9
    C[0].append(1)
    C[1] = [1, 1]
    for n in range(2, M+1):
        C[n].append(1)
        for r in range(1, n):
            C[n].append((C[n-1][r] + C[n-1][r-1]) % mod)
        C[n].append(1)
    print(C[M][R])


if __name__ == "__main__":
    main()
0