結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 50 ms
60,160 KB
testcase_03 AC 42 ms
51,456 KB
testcase_04 AC 52 ms
58,752 KB
testcase_05 AC 55 ms
59,392 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 50 ms
59,008 KB
testcase_08 AC 291 ms
78,464 KB
testcase_09 AC 267 ms
78,208 KB
testcase_10 AC 256 ms
78,464 KB
testcase_11 AC 249 ms
78,080 KB
testcase_12 AC 180 ms
77,312 KB
testcase_13 AC 498 ms
97,920 KB
testcase_14 AC 463 ms
98,048 KB
testcase_15 AC 432 ms
92,544 KB
testcase_16 AC 395 ms
92,288 KB
testcase_17 AC 466 ms
98,688 KB
testcase_18 AC 419 ms
94,336 KB
testcase_19 AC 454 ms
97,664 KB
testcase_20 AC 424 ms
93,184 KB
testcase_21 AC 463 ms
97,024 KB
testcase_22 AC 504 ms
99,456 KB
testcase_23 AC 428 ms
93,056 KB
testcase_24 AC 496 ms
98,048 KB
testcase_25 AC 455 ms
96,768 KB
testcase_26 AC 473 ms
98,688 KB
testcase_27 AC 444 ms
94,336 KB
testcase_28 AC 522 ms
99,712 KB
testcase_29 AC 476 ms
99,584 KB
testcase_30 AC 480 ms
99,968 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 AC 482 ms
99,712 KB
testcase_33 AC 485 ms
99,712 KB
testcase_34 AC 502 ms
99,584 KB
権限があれば一括ダウンロードができます

ソースコード

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