結果

問題 No.1791 Repeat Multiplication
ユーザー とりゐとりゐ
提出日時 2021-12-20 02:52:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 366 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 113,792 KB
最終ジャッジ日時 2024-09-15 15:10:18
合計ジャッジ時間 60,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 300 ms
19,456 KB
testcase_09 AC 267 ms
18,432 KB
testcase_10 AC 259 ms
18,432 KB
testcase_11 AC 239 ms
17,792 KB
testcase_12 AC 149 ms
15,104 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2,498 ms
81,200 KB
testcase_16 AC 2,432 ms
79,360 KB
testcase_17 TLE -
testcase_18 AC 2,835 ms
91,008 KB
testcase_19 TLE -
testcase_20 AC 2,561 ms
84,436 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2,617 ms
86,016 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 2,914 ms
91,008 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 30 ms
10,752 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def main(n,x):
  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 i in x:
    print(dp[i]*sm[n//i])

n,q=map(int,input().split())
x=[0]*q
for i in range(q):
  x[i]=int(input())
if __name__=="__main__":
  main(n,x)
0