結果

問題 No.129 お年玉(2)
ユーザー lloyzlloyz
提出日時 2023-11-10 00:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,312 KB
最終ジャッジ日時 2024-09-26 00:39:23
合計ジャッジ時間 7,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,736 KB
testcase_01 AC 415 ms
74,952 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 152 ms
75,264 KB
testcase_06 AC 96 ms
75,164 KB
testcase_07 AC 182 ms
75,312 KB
testcase_08 AC 206 ms
75,136 KB
testcase_09 AC 78 ms
73,148 KB
testcase_10 AC 213 ms
75,136 KB
testcase_11 AC 112 ms
74,896 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 95 ms
75,008 KB
testcase_15 AC 90 ms
74,832 KB
testcase_16 AC 117 ms
75,104 KB
testcase_17 AC 66 ms
68,736 KB
testcase_18 AC 185 ms
74,880 KB
testcase_19 AC 271 ms
75,136 KB
testcase_20 AC 139 ms
75,092 KB
testcase_21 AC 76 ms
71,936 KB
testcase_22 AC 134 ms
75,136 KB
testcase_23 AC 211 ms
75,132 KB
testcase_24 AC 318 ms
75,136 KB
testcase_25 AC 106 ms
75,164 KB
testcase_26 AC 162 ms
75,028 KB
testcase_27 AC 151 ms
75,108 KB
testcase_28 AC 134 ms
75,088 KB
testcase_29 AC 35 ms
51,584 KB
testcase_30 AC 34 ms
51,712 KB
testcase_31 AC 35 ms
51,712 KB
testcase_32 AC 34 ms
51,584 KB
testcase_33 AC 35 ms
52,096 KB
testcase_34 AC 35 ms
52,096 KB
testcase_35 AC 35 ms
52,224 KB
testcase_36 AC 35 ms
51,712 KB
testcase_37 AC 34 ms
52,224 KB
testcase_38 AC 44 ms
61,184 KB
testcase_39 AC 44 ms
60,416 KB
testcase_40 AC 56 ms
65,152 KB
testcase_41 AC 86 ms
75,008 KB
testcase_42 AC 59 ms
66,304 KB
testcase_43 AC 42 ms
52,224 KB
testcase_44 AC 330 ms
75,008 KB
testcase_45 AC 49 ms
62,336 KB
testcase_46 AC 35 ms
52,736 KB
testcase_47 AC 266 ms
74,880 KB
testcase_48 AC 211 ms
75,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n //= 1000
r = n % m
ans = 1
for i in range(r):
    ans *= m - i
for i in range(r):
    ans //= i + 1
ans %= 10**9
print(ans)
0