結果

問題 No.1281 Cigarette Distribution
ユーザー trineutrontrineutron
提出日時 2020-11-21 16:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2024-07-23 15:52:46
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,828 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 37 ms
52,072 KB
testcase_03 AC 38 ms
52,740 KB
testcase_04 AC 37 ms
52,876 KB
testcase_05 AC 37 ms
52,616 KB
testcase_06 AC 37 ms
52,416 KB
testcase_07 AC 37 ms
52,260 KB
testcase_08 AC 37 ms
53,504 KB
testcase_09 AC 37 ms
52,960 KB
testcase_10 AC 37 ms
53,056 KB
testcase_11 AC 37 ms
52,344 KB
testcase_12 AC 116 ms
77,088 KB
testcase_13 AC 157 ms
77,176 KB
testcase_14 AC 137 ms
76,936 KB
testcase_15 AC 118 ms
76,872 KB
testcase_16 AC 131 ms
76,864 KB
testcase_17 AC 51 ms
62,996 KB
testcase_18 AC 199 ms
78,036 KB
testcase_19 AC 200 ms
77,872 KB
testcase_20 AC 197 ms
78,504 KB
testcase_21 AC 144 ms
76,732 KB
testcase_22 AC 157 ms
77,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

def power(n, k):
    if k == 0:
        return 1
    res = 1
    while k:
        if k % 2:
            res = res * n % mod
        n = n * n % mod
        k //= 2
    return res

n, m = map(int, input().split())
for i in range(1, m + 1):
    d, r = divmod(n + 1, i)
    print(power(d+1, r) * power(d, i-r-1) * (d-1) % mod)
0