結果

問題 No.1791 Repeat Multiplication
ユーザー roarisroaris
提出日時 2022-02-14 18:53:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 3,000 ms
コード長 349 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-06-29 06:53:05
合計ジャッジ時間 13,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 55 ms
62,336 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 48 ms
59,008 KB
testcase_05 AC 49 ms
58,880 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 48 ms
58,880 KB
testcase_08 AC 128 ms
77,568 KB
testcase_09 AC 122 ms
77,568 KB
testcase_10 AC 121 ms
77,312 KB
testcase_11 AC 116 ms
77,056 KB
testcase_12 AC 102 ms
76,800 KB
testcase_13 AC 436 ms
97,664 KB
testcase_14 AC 447 ms
98,176 KB
testcase_15 AC 325 ms
92,160 KB
testcase_16 AC 329 ms
92,672 KB
testcase_17 AC 467 ms
99,328 KB
testcase_18 AC 373 ms
94,336 KB
testcase_19 AC 448 ms
97,664 KB
testcase_20 AC 343 ms
93,440 KB
testcase_21 AC 434 ms
97,536 KB
testcase_22 AC 475 ms
99,584 KB
testcase_23 AC 355 ms
93,824 KB
testcase_24 AC 446 ms
97,920 KB
testcase_25 AC 415 ms
96,896 KB
testcase_26 AC 457 ms
99,072 KB
testcase_27 AC 375 ms
94,720 KB
testcase_28 AC 489 ms
99,584 KB
testcase_29 AC 504 ms
99,712 KB
testcase_30 AC 504 ms
99,968 KB
testcase_31 AC 43 ms
51,712 KB
testcase_32 AC 505 ms
99,712 KB
testcase_33 AC 482 ms
100,096 KB
testcase_34 AC 492 ms
100,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, Q = map(int, input().split())
dp1 = [0]*(N+1)
dp1[1] = 1

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

dp2 = [1]*(N+1)

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

for _ in range(Q):
    x = int(input())
    print(dp1[x]*dp2[x])
0