結果

問題 No.129 お年玉(2)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 11:22:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 348 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 821,376 KB
最終ジャッジ日時 2024-11-30 14:45:47
合計ジャッジ時間 142,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,056 ms
206,208 KB
testcase_01 MLE -
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 1,811 ms
349,696 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 29 ms
10,496 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 29 ms
10,496 KB
testcase_34 AC 72 ms
14,848 KB
testcase_35 AC 48 ms
11,776 KB
testcase_36 AC 154 ms
25,472 KB
testcase_37 AC 103 ms
19,712 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 AC 1,278 ms
237,440 KB
testcase_44 MLE -
testcase_45 MLE -
testcase_46 AC 1,601 ms
322,304 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=int(input())

amari = (n%(m*1000)) // 1000
mod=10**9

dp=[[0]*(amari+10) for i in range(m+10)]
dp[0][0]=1

for i in range(m+1):
    for j in range(amari+1):
        if dp[i][j] == 0:
            continue
        dp[i+1][j] += dp[i][j]
        dp[i+1][j+1] += dp[i][j]


if m <= amari:
    print(1)
else:
    print(dp[m][amari]%mod)
0