結果

問題 No.1281 Cigarette Distribution
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-06 23:28:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-07-22 13:45:56
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
51,880 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 35 ms
51,944 KB
testcase_12 AC 103 ms
80,640 KB
testcase_13 AC 168 ms
88,176 KB
testcase_14 AC 138 ms
84,736 KB
testcase_15 AC 112 ms
81,516 KB
testcase_16 AC 124 ms
83,456 KB
testcase_17 AC 46 ms
60,928 KB
testcase_18 AC 243 ms
95,852 KB
testcase_19 AC 238 ms
96,000 KB
testcase_20 AC 235 ms
95,800 KB
testcase_21 AC 149 ms
86,016 KB
testcase_22 AC 175 ms
88,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
mod = 10**9+7
ans = []
for x in range(1, m+1):
    temp = 1
    q, r = divmod(n+1, x)
    temp *= pow(q+1, r, mod)*pow(q, x-r-1, mod)*(q-1)
    temp %= mod
    ans.append(temp)
print(*ans, sep='\n')
0