結果

問題 No.888 約数の総和
ユーザー y10
提出日時 2020-01-12 20:46:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 59,864 KB
最終ジャッジ日時 2024-11-30 07:38:18
合計ジャッジ時間 18,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n = int(input())
U = (10**12) ** 0.5 + 1
x = np.arange(1, U, dtype=np.int64)
div = x[n%x==0]
print(sum(div))
0