結果

問題 No.1281 Cigarette Distribution
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-18 14:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 76,412 KB
最終ジャッジ日時 2024-06-22 06:55:12
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,880 KB
testcase_01 AC 34 ms
52,848 KB
testcase_02 AC 34 ms
52,468 KB
testcase_03 AC 33 ms
52,248 KB
testcase_04 AC 31 ms
52,068 KB
testcase_05 AC 32 ms
53,908 KB
testcase_06 AC 34 ms
52,516 KB
testcase_07 AC 33 ms
52,664 KB
testcase_08 AC 33 ms
52,212 KB
testcase_09 AC 32 ms
52,484 KB
testcase_10 AC 32 ms
51,752 KB
testcase_11 AC 33 ms
52,648 KB
testcase_12 AC 98 ms
76,092 KB
testcase_13 AC 142 ms
76,056 KB
testcase_14 AC 129 ms
75,856 KB
testcase_15 AC 100 ms
76,304 KB
testcase_16 AC 112 ms
76,364 KB
testcase_17 AC 41 ms
60,948 KB
testcase_18 AC 150 ms
76,296 KB
testcase_19 AC 155 ms
76,324 KB
testcase_20 AC 150 ms
76,076 KB
testcase_21 AC 138 ms
75,916 KB
testcase_22 AC 144 ms
76,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
mod=10**9+7
"""
2*x-1回目ではじめて正の得点を得れる

"""
#print(n)
for x in range(1,m+1):
  if 2*x-1>n:
    print(0)
    continue
  tmp=1
  t=n//x
  p=n%x
  if p==x-1:
    tmp*=pow(t,x-p,mod)
    tmp*=pow(t+1,p,mod)
  else:
    tmp*=pow(t-1,1,mod)
    tmp*=pow(t,x-p-2,mod)
    tmp*=pow(t+1,p+1,mod)
  print(tmp%mod)
0