結果

問題 No.1791 Repeat Multiplication
ユーザー ramdosramdos
提出日時 2021-11-27 23:40:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 3,000 ms
コード長 229 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-09-15 14:54:24
合計ジャッジ時間 13,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 49 ms
59,136 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 55 ms
59,776 KB
testcase_05 AC 68 ms
66,560 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 53 ms
59,904 KB
testcase_08 AC 295 ms
77,184 KB
testcase_09 AC 274 ms
76,928 KB
testcase_10 AC 278 ms
76,800 KB
testcase_11 AC 259 ms
77,312 KB
testcase_12 AC 189 ms
76,800 KB
testcase_13 AC 440 ms
87,296 KB
testcase_14 AC 455 ms
87,168 KB
testcase_15 AC 398 ms
84,608 KB
testcase_16 AC 387 ms
84,096 KB
testcase_17 AC 458 ms
87,552 KB
testcase_18 AC 415 ms
85,376 KB
testcase_19 AC 449 ms
87,040 KB
testcase_20 AC 403 ms
84,480 KB
testcase_21 AC 432 ms
86,656 KB
testcase_22 AC 463 ms
88,064 KB
testcase_23 AC 406 ms
84,992 KB
testcase_24 AC 450 ms
87,168 KB
testcase_25 AC 428 ms
86,528 KB
testcase_26 AC 454 ms
87,168 KB
testcase_27 AC 413 ms
85,376 KB
testcase_28 AC 466 ms
87,936 KB
testcase_29 AC 476 ms
87,808 KB
testcase_30 AC 484 ms
88,064 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 AC 478 ms
87,808 KB
testcase_33 AC 465 ms
87,808 KB
testcase_34 AC 479 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
v=[0 for _ in range(N+1)]
v[1]=1;
for i in range(1,N+1):
  c=i*2
  while c<=N:
    v[c]+=v[i]
    c+=i
for i in range(Q):
  t=int(input())
  f=0
  for j in range(N//t):
    f+=v[j+1]
  print(v[t]*f)
0