結果

問題 No.1791 Repeat Multiplication
ユーザー KudeKude
提出日時 2021-12-20 20:07:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 3,000 ms
コード長 288 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-09-15 15:20:57
合計ジャッジ時間 13,406 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 48 ms
61,056 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 48 ms
59,392 KB
testcase_05 AC 50 ms
59,520 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 47 ms
59,136 KB
testcase_08 AC 291 ms
78,080 KB
testcase_09 AC 262 ms
78,080 KB
testcase_10 AC 264 ms
78,464 KB
testcase_11 AC 253 ms
77,568 KB
testcase_12 AC 183 ms
77,312 KB
testcase_13 AC 458 ms
97,792 KB
testcase_14 AC 482 ms
98,432 KB
testcase_15 AC 406 ms
92,288 KB
testcase_16 AC 409 ms
92,160 KB
testcase_17 AC 469 ms
99,584 KB
testcase_18 AC 430 ms
94,976 KB
testcase_19 AC 457 ms
97,280 KB
testcase_20 AC 431 ms
93,440 KB
testcase_21 AC 447 ms
97,536 KB
testcase_22 AC 517 ms
99,328 KB
testcase_23 AC 422 ms
93,824 KB
testcase_24 AC 460 ms
98,432 KB
testcase_25 AC 446 ms
96,512 KB
testcase_26 AC 464 ms
98,432 KB
testcase_27 AC 428 ms
94,720 KB
testcase_28 AC 476 ms
99,840 KB
testcase_29 AC 477 ms
100,096 KB
testcase_30 AC 472 ms
100,096 KB
testcase_31 AC 41 ms
51,328 KB
testcase_32 AC 482 ms
99,456 KB
testcase_33 AC 497 ms
99,712 KB
testcase_34 AC 491 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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