結果

問題 No.1281 Cigarette Distribution
ユーザー AEnAEn
提出日時 2022-05-27 16:35:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2024-09-20 15:18:15
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,020 KB
testcase_01 AC 33 ms
52,676 KB
testcase_02 AC 33 ms
51,824 KB
testcase_03 AC 34 ms
52,492 KB
testcase_04 AC 34 ms
53,284 KB
testcase_05 AC 32 ms
54,224 KB
testcase_06 AC 35 ms
53,296 KB
testcase_07 AC 38 ms
53,372 KB
testcase_08 AC 38 ms
53,488 KB
testcase_09 AC 38 ms
53,504 KB
testcase_10 AC 38 ms
52,632 KB
testcase_11 AC 38 ms
52,688 KB
testcase_12 AC 114 ms
76,052 KB
testcase_13 AC 136 ms
76,080 KB
testcase_14 AC 127 ms
76,464 KB
testcase_15 AC 102 ms
75,988 KB
testcase_16 AC 115 ms
76,188 KB
testcase_17 AC 43 ms
60,364 KB
testcase_18 AC 153 ms
76,344 KB
testcase_19 AC 149 ms
76,304 KB
testcase_20 AC 153 ms
76,508 KB
testcase_21 AC 142 ms
76,432 KB
testcase_22 AC 155 ms
76,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int,input().split())
mod = 10**9+7
for i in range(1, M+1):
    if i == 1:
        print(N)
    else:
        a = int((N+1)/i)
        if a < 2:
            print(0)
        elif N == a*i-1:
            print((pow(a, i-1, mod)*(a-1))%mod)
        else:
            print((pow(a, (1+a)*i-N-2, mod)*pow(a+1, N-a*i+1, mod)*(a-1))%mod)
0