結果

問題 No.129 お年玉(2)
ユーザー flippergoflippergo
提出日時 2024-10-05 12:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 62,308 KB
最終ジャッジ日時 2024-10-05 12:34:09
合計ジャッジ時間 10,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,840 KB
testcase_01 AC 435 ms
61,204 KB
testcase_02 AC 34 ms
52,320 KB
testcase_03 AC 32 ms
53,444 KB
testcase_04 AC 33 ms
52,188 KB
testcase_05 AC 198 ms
60,748 KB
testcase_06 AC 236 ms
61,280 KB
testcase_07 AC 315 ms
61,532 KB
testcase_08 AC 266 ms
61,940 KB
testcase_09 AC 204 ms
61,840 KB
testcase_10 AC 367 ms
61,960 KB
testcase_11 AC 207 ms
62,180 KB
testcase_12 AC 67 ms
61,888 KB
testcase_13 AC 59 ms
60,228 KB
testcase_14 AC 218 ms
60,900 KB
testcase_15 AC 198 ms
60,868 KB
testcase_16 AC 238 ms
62,132 KB
testcase_17 AC 201 ms
61,388 KB
testcase_18 AC 309 ms
60,444 KB
testcase_19 AC 352 ms
61,508 KB
testcase_20 AC 285 ms
61,164 KB
testcase_21 AC 235 ms
61,772 KB
testcase_22 AC 233 ms
61,088 KB
testcase_23 AC 342 ms
61,068 KB
testcase_24 AC 367 ms
61,980 KB
testcase_25 AC 211 ms
61,540 KB
testcase_26 AC 245 ms
61,980 KB
testcase_27 AC 233 ms
61,460 KB
testcase_28 AC 313 ms
62,308 KB
testcase_29 AC 35 ms
52,756 KB
testcase_30 AC 35 ms
53,428 KB
testcase_31 AC 34 ms
52,440 KB
testcase_32 AC 33 ms
53,540 KB
testcase_33 AC 34 ms
53,660 KB
testcase_34 AC 40 ms
60,536 KB
testcase_35 AC 39 ms
59,256 KB
testcase_36 AC 39 ms
60,120 KB
testcase_37 AC 39 ms
60,168 KB
testcase_38 AC 67 ms
61,372 KB
testcase_39 AC 71 ms
61,048 KB
testcase_40 AC 137 ms
61,416 KB
testcase_41 AC 143 ms
62,104 KB
testcase_42 AC 88 ms
62,016 KB
testcase_43 AC 57 ms
60,696 KB
testcase_44 AC 457 ms
61,232 KB
testcase_45 AC 64 ms
61,596 KB
testcase_46 AC 56 ms
60,484 KB
testcase_47 AC 399 ms
61,280 KB
testcase_48 AC 262 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
MOD = 10**9
N = N//1000
r = N%M
dp = [[0 for _ in range(r+1)] for _ in range(2)]
dp[0][0] = 1
dp[1][0] = 1
for i in range(1,M+1):
    for j in range(1,r+1):
        if j>i:break
        dp[i%2][j] = (dp[(i-1)%2][j]+dp[(i-1)%2][j-1])%MOD
print(dp[M%2][r])
0