結果

問題 No.1791 Repeat Multiplication
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-12-23 22:17:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 3,000 ms
コード長 574 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 106,004 KB
最終ジャッジ日時 2024-09-17 21:11:08
合計ジャッジ時間 11,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 49 ms
63,568 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 40 ms
58,752 KB
testcase_05 AC 43 ms
59,264 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 42 ms
58,496 KB
testcase_08 AC 115 ms
83,308 KB
testcase_09 AC 106 ms
83,636 KB
testcase_10 AC 104 ms
83,456 KB
testcase_11 AC 97 ms
83,456 KB
testcase_12 AC 83 ms
80,292 KB
testcase_13 AC 370 ms
103,632 KB
testcase_14 AC 388 ms
104,184 KB
testcase_15 AC 284 ms
97,772 KB
testcase_16 AC 284 ms
97,784 KB
testcase_17 AC 392 ms
104,660 KB
testcase_18 AC 320 ms
102,272 KB
testcase_19 AC 379 ms
104,320 KB
testcase_20 AC 309 ms
98,764 KB
testcase_21 AC 378 ms
104,136 KB
testcase_22 AC 413 ms
104,568 KB
testcase_23 AC 312 ms
99,552 KB
testcase_24 AC 410 ms
104,044 KB
testcase_25 AC 362 ms
104,000 KB
testcase_26 AC 409 ms
104,616 KB
testcase_27 AC 328 ms
102,400 KB
testcase_28 AC 420 ms
106,004 KB
testcase_29 AC 444 ms
105,476 KB
testcase_30 AC 412 ms
105,364 KB
testcase_31 AC 37 ms
52,480 KB
testcase_32 AC 410 ms
105,408 KB
testcase_33 AC 414 ms
105,408 KB
testcase_34 AC 434 ms
105,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

dpL[x] = xがある時、その左としてあり得る種類数
dpR[x] = xがある時、その右としてあり得る種類数

log
行けるかな…

"""

import sys
from sys import stdin

N,Q = map(int,stdin.readline().split())

dpL = [0] * (N+1)
dpL[1] = 1

for i in range(1,N+1):
    for j in range(i*2,N+1,i):
        dpL[j] += dpL[i]

dpR = [1] * (N+1)
for i in range(N,0,-1):
    for j in range(i*2,N+1,i):
        dpR[i] += dpR[j]

ans = []

for loop in range(Q):

    x = int(stdin.readline())
    ans.append( str(dpL[x]*dpR[x]) )

print ("\n".join(ans))
0