結果

問題 No.129 お年玉(2)
ユーザー mlihua09mlihua09
提出日時 2020-09-16 16:32:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 75,384 KB
最終ジャッジ日時 2024-06-22 03:20:47
合計ジャッジ時間 7,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 441 ms
75,140 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 37 ms
53,456 KB
testcase_04 AC 36 ms
53,020 KB
testcase_05 AC 164 ms
75,372 KB
testcase_06 AC 103 ms
75,288 KB
testcase_07 AC 194 ms
75,196 KB
testcase_08 AC 225 ms
75,220 KB
testcase_09 AC 85 ms
72,912 KB
testcase_10 AC 231 ms
75,148 KB
testcase_11 AC 121 ms
75,120 KB
testcase_12 AC 38 ms
52,828 KB
testcase_13 AC 37 ms
53,940 KB
testcase_14 AC 102 ms
75,080 KB
testcase_15 AC 96 ms
75,128 KB
testcase_16 AC 126 ms
75,044 KB
testcase_17 AC 73 ms
69,840 KB
testcase_18 AC 204 ms
74,956 KB
testcase_19 AC 297 ms
75,368 KB
testcase_20 AC 154 ms
75,084 KB
testcase_21 AC 81 ms
73,384 KB
testcase_22 AC 143 ms
75,384 KB
testcase_23 AC 219 ms
75,364 KB
testcase_24 AC 342 ms
75,080 KB
testcase_25 AC 114 ms
74,908 KB
testcase_26 AC 178 ms
75,088 KB
testcase_27 AC 164 ms
74,996 KB
testcase_28 AC 142 ms
75,188 KB
testcase_29 AC 37 ms
54,152 KB
testcase_30 AC 37 ms
52,504 KB
testcase_31 AC 38 ms
52,724 KB
testcase_32 AC 37 ms
53,500 KB
testcase_33 AC 37 ms
53,596 KB
testcase_34 AC 38 ms
52,400 KB
testcase_35 AC 37 ms
53,848 KB
testcase_36 AC 37 ms
52,556 KB
testcase_37 AC 37 ms
52,756 KB
testcase_38 AC 51 ms
62,024 KB
testcase_39 AC 50 ms
60,712 KB
testcase_40 AC 60 ms
65,316 KB
testcase_41 AC 96 ms
74,916 KB
testcase_42 AC 63 ms
66,660 KB
testcase_43 AC 38 ms
53,256 KB
testcase_44 AC 357 ms
75,076 KB
testcase_45 AC 53 ms
63,868 KB
testcase_46 AC 39 ms
53,776 KB
testcase_47 AC 291 ms
75,188 KB
testcase_48 AC 231 ms
75,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

M = int(input())

N //= 1000
N %= M

ans = 1

for i in range(M, M - N, -1):
    
    ans *= i
    
for i in range(1, N + 1):
    
    ans //= i
    
print(ans % 10 ** 9)
0