結果

問題 No.1281 Cigarette Distribution
ユーザー ああああ
提出日時 2023-01-18 15:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-11 16:52:19
合計ジャッジ時間 3,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 30 ms
51,328 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 31 ms
51,584 KB
testcase_05 AC 31 ms
51,584 KB
testcase_06 AC 32 ms
51,584 KB
testcase_07 AC 32 ms
51,840 KB
testcase_08 AC 31 ms
51,840 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 30 ms
51,968 KB
testcase_11 AC 32 ms
51,584 KB
testcase_12 AC 81 ms
72,192 KB
testcase_13 AC 140 ms
76,032 KB
testcase_14 AC 115 ms
76,032 KB
testcase_15 AC 91 ms
73,996 KB
testcase_16 AC 107 ms
76,012 KB
testcase_17 AC 40 ms
58,496 KB
testcase_18 AC 208 ms
75,776 KB
testcase_19 AC 212 ms
76,160 KB
testcase_20 AC 205 ms
75,776 KB
testcase_21 AC 129 ms
75,776 KB
testcase_22 AC 146 ms
75,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
mod=10**9+7
for i in range(1,M+1):
    q=(N+1)//i
    r=(N+1)%i

    ans=((pow(q+1,r,mod)*pow(q,i-r-1,mod))%mod)*(q-1)
    print(ans%mod)



    
0