結果

問題 No.1791 Repeat Multiplication
ユーザー gr1msl3ygr1msl3y
提出日時 2021-12-24 08:15:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 628 ms / 3,000 ms
コード長 276 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-09-19 05:10:18
合計ジャッジ時間 15,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 54 ms
62,720 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 51 ms
59,648 KB
testcase_05 AC 49 ms
60,544 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 47 ms
59,776 KB
testcase_08 AC 274 ms
78,208 KB
testcase_09 AC 258 ms
78,336 KB
testcase_10 AC 252 ms
78,208 KB
testcase_11 AC 244 ms
77,696 KB
testcase_12 AC 206 ms
77,440 KB
testcase_13 AC 558 ms
98,432 KB
testcase_14 AC 556 ms
98,816 KB
testcase_15 AC 466 ms
92,416 KB
testcase_16 AC 460 ms
92,288 KB
testcase_17 AC 572 ms
99,584 KB
testcase_18 AC 488 ms
95,232 KB
testcase_19 AC 542 ms
98,048 KB
testcase_20 AC 466 ms
93,696 KB
testcase_21 AC 550 ms
98,176 KB
testcase_22 AC 563 ms
99,584 KB
testcase_23 AC 496 ms
93,952 KB
testcase_24 AC 594 ms
98,560 KB
testcase_25 AC 526 ms
97,152 KB
testcase_26 AC 554 ms
99,072 KB
testcase_27 AC 553 ms
94,720 KB
testcase_28 AC 569 ms
99,968 KB
testcase_29 AC 569 ms
100,096 KB
testcase_30 AC 628 ms
100,096 KB
testcase_31 AC 37 ms
51,840 KB
testcase_32 AC 584 ms
99,968 KB
testcase_33 AC 598 ms
100,224 KB
testcase_34 AC 568 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
bu=[0]*(N+1)
bu[1]=1
td=[1]*(N+1)
for i in range(1,N+1):
    for j in range(2*i,N+1,i):
        bu[j]+=bu[i]
for i in range(N,0,-1):
    for j in range(2*i,N+1,i):
        td[i]+=td[j]

for _ in range(Q):
    q=int(input())
    print(td[q]*bu[q])
0