結果

問題 No.129 お年玉(2)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-22 00:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 919 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 81,296 KB
最終ジャッジ日時 2024-10-22 00:43:04
合計ジャッジ時間 23,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
75,944 KB
testcase_01 AC 893 ms
81,296 KB
testcase_02 AC 38 ms
51,944 KB
testcase_03 AC 38 ms
52,268 KB
testcase_04 AC 38 ms
52,504 KB
testcase_05 AC 401 ms
77,168 KB
testcase_06 AC 597 ms
78,580 KB
testcase_07 AC 751 ms
79,656 KB
testcase_08 AC 506 ms
77,860 KB
testcase_09 AC 694 ms
79,452 KB
testcase_10 AC 753 ms
80,028 KB
testcase_11 AC 513 ms
77,888 KB
testcase_12 AC 624 ms
78,692 KB
testcase_13 AC 679 ms
79,080 KB
testcase_14 AC 629 ms
78,592 KB
testcase_15 AC 550 ms
77,860 KB
testcase_16 AC 588 ms
78,620 KB
testcase_17 AC 732 ms
79,628 KB
testcase_18 AC 671 ms
79,104 KB
testcase_19 AC 740 ms
79,744 KB
testcase_20 AC 707 ms
79,480 KB
testcase_21 AC 890 ms
80,900 KB
testcase_22 AC 539 ms
77,888 KB
testcase_23 AC 766 ms
80,112 KB
testcase_24 AC 766 ms
80,116 KB
testcase_25 AC 491 ms
77,628 KB
testcase_26 AC 527 ms
77,924 KB
testcase_27 AC 490 ms
77,792 KB
testcase_28 AC 907 ms
81,080 KB
testcase_29 AC 38 ms
53,344 KB
testcase_30 AC 38 ms
51,872 KB
testcase_31 AC 43 ms
58,436 KB
testcase_32 AC 42 ms
59,632 KB
testcase_33 AC 50 ms
64,932 KB
testcase_34 AC 47 ms
61,732 KB
testcase_35 AC 50 ms
63,932 KB
testcase_36 AC 50 ms
65,180 KB
testcase_37 AC 52 ms
66,664 KB
testcase_38 AC 141 ms
75,788 KB
testcase_39 AC 193 ms
76,444 KB
testcase_40 AC 462 ms
77,688 KB
testcase_41 AC 297 ms
76,676 KB
testcase_42 AC 154 ms
76,068 KB
testcase_43 AC 154 ms
76,108 KB
testcase_44 AC 919 ms
81,204 KB
testcase_45 AC 109 ms
75,836 KB
testcase_46 AC 212 ms
76,080 KB
testcase_47 AC 883 ms
80,916 KB
testcase_48 AC 560 ms
78,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=int(input())
l=(n//1000)//m
k=n//1000-l*m
M=10**9
c=[0]*(m+1)
c[0]=1
for i in range(m):
  nc=[0]*(m+1)
  for j in range(m):
    nc[j]+=c[j]
    nc[j]%=M
    nc[j+1]+=c[j]
    nc[j+1]%=M
  c=nc
print(c[k])
0