結果

問題 No.1791 Repeat Multiplication
ユーザー 👑 rin204rin204
提出日時 2022-01-21 01:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 3,000 ms
コード長 323 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 100,264 KB
最終ジャッジ日時 2024-11-24 13:25:25
合計ジャッジ時間 14,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,420 KB
testcase_01 AC 34 ms
52,616 KB
testcase_02 AC 43 ms
63,644 KB
testcase_03 AC 35 ms
52,540 KB
testcase_04 AC 46 ms
60,360 KB
testcase_05 AC 44 ms
60,624 KB
testcase_06 AC 35 ms
52,884 KB
testcase_07 AC 40 ms
60,080 KB
testcase_08 AC 254 ms
78,392 KB
testcase_09 AC 240 ms
78,020 KB
testcase_10 AC 238 ms
78,148 KB
testcase_11 AC 223 ms
77,760 KB
testcase_12 AC 163 ms
77,496 KB
testcase_13 AC 485 ms
98,184 KB
testcase_14 AC 484 ms
98,776 KB
testcase_15 AC 417 ms
92,720 KB
testcase_16 AC 412 ms
92,536 KB
testcase_17 AC 499 ms
99,288 KB
testcase_18 AC 448 ms
94,680 KB
testcase_19 AC 491 ms
98,036 KB
testcase_20 AC 432 ms
93,252 KB
testcase_21 AC 475 ms
97,876 KB
testcase_22 AC 533 ms
99,560 KB
testcase_23 AC 448 ms
93,660 KB
testcase_24 AC 503 ms
98,744 KB
testcase_25 AC 477 ms
97,224 KB
testcase_26 AC 499 ms
98,996 KB
testcase_27 AC 444 ms
95,028 KB
testcase_28 AC 506 ms
100,040 KB
testcase_29 AC 520 ms
100,132 KB
testcase_30 AC 521 ms
99,780 KB
testcase_31 AC 35 ms
52,576 KB
testcase_32 AC 524 ms
100,080 KB
testcase_33 AC 518 ms
100,092 KB
testcase_34 AC 527 ms
100,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
bef = [1] * (n + 1)
aft = [1] * (n + 1)

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

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

for _ in range(q):
    x = int(input())
    print(bef[x] * aft[x])
    
0