結果

問題 No.129 お年玉(2)
ユーザー ntudantuda
提出日時 2024-11-08 16:47:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 608 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-11-08 16:48:02
合計ジャッジ時間 16,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,648 KB
testcase_01 AC 600 ms
96,896 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 306 ms
81,024 KB
testcase_06 AC 409 ms
86,784 KB
testcase_07 AC 511 ms
90,880 KB
testcase_08 AC 358 ms
84,224 KB
testcase_09 AC 449 ms
88,832 KB
testcase_10 AC 498 ms
91,776 KB
testcase_11 AC 369 ms
83,712 KB
testcase_12 AC 405 ms
87,552 KB
testcase_13 AC 434 ms
88,448 KB
testcase_14 AC 442 ms
87,936 KB
testcase_15 AC 357 ms
84,736 KB
testcase_16 AC 386 ms
87,040 KB
testcase_17 AC 493 ms
90,112 KB
testcase_18 AC 456 ms
88,960 KB
testcase_19 AC 473 ms
90,496 KB
testcase_20 AC 499 ms
90,240 KB
testcase_21 AC 579 ms
96,256 KB
testcase_22 AC 350 ms
84,224 KB
testcase_23 AC 528 ms
92,416 KB
testcase_24 AC 501 ms
91,392 KB
testcase_25 AC 365 ms
83,584 KB
testcase_26 AC 333 ms
83,968 KB
testcase_27 AC 337 ms
83,584 KB
testcase_28 AC 608 ms
96,640 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 40 ms
51,584 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 42 ms
57,728 KB
testcase_33 AC 38 ms
51,712 KB
testcase_34 AC 50 ms
63,488 KB
testcase_35 AC 58 ms
73,216 KB
testcase_36 AC 62 ms
75,392 KB
testcase_37 AC 62 ms
75,520 KB
testcase_38 AC 111 ms
76,160 KB
testcase_39 AC 146 ms
77,056 KB
testcase_40 AC 339 ms
82,560 KB
testcase_41 AC 209 ms
78,720 KB
testcase_42 AC 123 ms
76,544 KB
testcase_43 AC 122 ms
76,544 KB
testcase_44 AC 602 ms
96,768 KB
testcase_45 AC 91 ms
75,648 KB
testcase_46 AC 169 ms
77,184 KB
testcase_47 AC 594 ms
95,616 KB
testcase_48 AC 371 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9
N = int(input()) // 1000
M = int(input())
mod = N % M
if mod == 0:
    print(1)
    exit()

def comb(n, m):
    dp = [0, 1, 0]
    for i in range(1, n + 1):
        dp2 = [0]
        for j in range(i + 1):
            dp2.append((dp[j] + dp[j + 1]) % MOD)
        dp2.append(0)
        dp = dp2
    return (dp[m + 1])

print(comb(M, mod))
0