結果

問題 No.2480 Sequence Sum
ユーザー ゼットゼット
提出日時 2023-09-28 07:45:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 500 ms
コード長 398 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-07-26 14:43:07
合計ジャッジ時間 1,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 57 ms
64,256 KB
testcase_03 AC 53 ms
61,568 KB
testcase_04 AC 57 ms
64,512 KB
testcase_05 AC 64 ms
70,528 KB
testcase_06 AC 59 ms
65,792 KB
testcase_07 AC 58 ms
65,152 KB
testcase_08 AC 54 ms
61,696 KB
testcase_09 AC 63 ms
69,376 KB
testcase_10 AC 60 ms
66,688 KB
testcase_11 AC 58 ms
64,768 KB
testcase_12 AC 65 ms
70,144 KB
testcase_13 AC 66 ms
70,528 KB
testcase_14 AC 68 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=set()
N=int(input())
from math import sqrt
k=int(sqrt(N))
for x in range(1,k+1):
  t=N%x
  if t==0:
    u=x
  else:
    u=t
  f=u*(x+1)
  if f<N:
    A.add(x)
for y in range(2,k+1):
  x=N//y
  t=N%x
  if t==0:
    u=x
  else:
    u=t
  f=u*(x+1)
  if f<N:
    A.add(x)
result=0
for x in A:
  t=N%x
  u=x-t
  if t==0:
    u=x
  else:
    u=t
  p=(N-u*(x+1))//x
  result+=(p+x)//(x+1)
print(result)
0