結果

問題 No.1791 Repeat Multiplication
ユーザー とりゐとりゐ
提出日時 2021-12-20 02:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 3,000 ms
コード長 213 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-09-15 15:08:41
合計ジャッジ時間 13,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
dp=[0]*(n+1)
sm=[0]*(n+1)
dp[1]=1
for i in range(1,n+1):
  for j in range(2*i,n+1,i):
    dp[j]+=dp[i]
  sm[i]=dp[i]+sm[i-1]
for _ in range(q):
  x=int(input())
  print(dp[x]*sm[n//x])
0