結果
問題 | No.1281 Cigarette Distribution |
ユーザー |
![]() |
提出日時 | 2020-11-07 10:33:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 970 ms / 2,000 ms |
コード長 | 936 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-22 14:22:53 |
合計ジャッジ時間 | 8,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
from operator import itemgetter from itertools import * from bisect import * from collections import * from heapq import * import sys # input=sys.stdin.buffer.readline input=sys.stdin.readline sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(input()) def MI(): return map(int, input().split()) def MI1(): return map(int1, input().split()) def LI(): return list(map(int, input().split())) def LI1(): return list(map(int1, input().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def SI(): return input()[:-1] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] dij = [(1, 0), (0, 1), (-1, 0), (0, -1)] md=10**9+7 n,m=MI() for x in range(1,m+1): a2,c1=divmod(n+1,x) if c1: a1=a2+1 c2=x-c1 ans=pow(a1,c1,md)*pow(a2,c2-1,md)*(a2-1) else: ans=pow(a2,x-1,md)*(a2-1) ans%=md print(ans)