結果

問題 No.1281 Cigarette Distribution
ユーザー timitimi
提出日時 2020-11-09 09:33:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-22 15:58:16
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 249 ms
10,624 KB
testcase_13 AC 455 ms
11,008 KB
testcase_14 AC 429 ms
10,752 KB
testcase_15 AC 243 ms
10,880 KB
testcase_16 AC 319 ms
11,008 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 585 ms
11,008 KB
testcase_19 AC 571 ms
11,008 KB
testcase_20 AC 572 ms
11,136 KB
testcase_21 AC 504 ms
10,752 KB
testcase_22 AC 534 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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