結果

問題 No.1281 Cigarette Distribution
ユーザー rlangevinrlangevin
提出日時 2023-02-05 22:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,640 KB
最終ジャッジ日時 2024-07-04 07:47:53
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,696 KB
testcase_01 AC 37 ms
51,872 KB
testcase_02 AC 37 ms
52,756 KB
testcase_03 AC 39 ms
53,680 KB
testcase_04 AC 37 ms
52,460 KB
testcase_05 AC 37 ms
53,348 KB
testcase_06 AC 37 ms
53,928 KB
testcase_07 AC 37 ms
52,396 KB
testcase_08 AC 39 ms
52,728 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 38 ms
52,504 KB
testcase_11 AC 38 ms
52,396 KB
testcase_12 AC 145 ms
76,176 KB
testcase_13 AC 265 ms
76,024 KB
testcase_14 AC 206 ms
76,052 KB
testcase_15 AC 163 ms
76,092 KB
testcase_16 AC 191 ms
76,232 KB
testcase_17 AC 47 ms
59,788 KB
testcase_18 AC 399 ms
76,640 KB
testcase_19 AC 397 ms
76,152 KB
testcase_20 AC 404 ms
76,432 KB
testcase_21 AC 232 ms
76,104 KB
testcase_22 AC 279 ms
76,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
mod = 10 ** 9 + 7

for i in range(1, M + 1):
    big = N % i
    small = i - big
    ans = pow(N//i, small, mod) * pow(N//i + 1, big, mod)
    if small == 0:
        ans *= pow(N//i + 1, mod - 3, mod)
        ans *= N//i * (N//i + 2)
    elif small >= 2:
        ans *= pow(N//i, mod - 3, mod)
        ans *= (N//i - 1) * (N//i + 1)
    ans %= mod
    print(ans)
0