結果

問題 No.129 お年玉(2)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 11:21:28
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 352 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 852,352 KB
最終ジャッジ日時 2024-11-30 14:40:12
合計ジャッジ時間 73,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
298,972 KB
testcase_01 MLE -
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
51,840 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,015 ms
481,640 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 42 ms
51,584 KB
testcase_30 AC 42 ms
52,352 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 47 ms
58,880 KB
testcase_33 AC 42 ms
53,248 KB
testcase_34 AC 70 ms
73,476 KB
testcase_35 AC 58 ms
65,280 KB
testcase_36 AC 83 ms
83,056 KB
testcase_37 AC 79 ms
82,924 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 AC 607 ms
342,396 KB
testcase_44 MLE -
testcase_45 MLE -
testcase_46 AC 856 ms
441,992 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