結果

問題 No.1281 Cigarette Distribution
ユーザー ibyiby
提出日時 2020-11-16 20:37:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,484 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-23 01:42:23
合計ジャッジ時間 11,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 461 ms
10,624 KB
testcase_13 AC 993 ms
10,880 KB
testcase_14 AC 800 ms
10,624 KB
testcase_15 AC 509 ms
10,880 KB
testcase_16 AC 639 ms
10,880 KB
testcase_17 AC 39 ms
10,624 KB
testcase_18 AC 1,484 ms
10,880 KB
testcase_19 AC 1,446 ms
10,880 KB
testcase_20 AC 1,460 ms
11,008 KB
testcase_21 AC 914 ms
10,624 KB
testcase_22 AC 1,060 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

n, m = map(int, input().split())

def inv(x):
    return pow(x, mod-2, mod)


for x in range(1, m+1):
    u, v = divmod(n + 1, x)
    ans = pow(u, x-v, mod)*pow(u+1, v, mod)
    ans *= (u-1)
    ans *= inv(u)
    print(ans % mod)

0