結果

問題 No.888 約数の総和
ユーザー y10y10
提出日時 2020-01-12 20:46:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 59,864 KB
最終ジャッジ日時 2024-11-30 07:38:18
合計ジャッジ時間 18,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 477 ms
59,200 KB
testcase_01 AC 500 ms
59,300 KB
testcase_02 AC 515 ms
59,288 KB
testcase_03 AC 484 ms
59,008 KB
testcase_04 AC 469 ms
59,324 KB
testcase_05 AC 483 ms
59,288 KB
testcase_06 AC 469 ms
59,572 KB
testcase_07 AC 531 ms
59,388 KB
testcase_08 AC 488 ms
59,196 KB
testcase_09 AC 473 ms
59,316 KB
testcase_10 AC 464 ms
59,032 KB
testcase_11 AC 492 ms
59,100 KB
testcase_12 AC 470 ms
59,532 KB
testcase_13 AC 474 ms
59,676 KB
testcase_14 AC 473 ms
58,976 KB
testcase_15 AC 488 ms
58,956 KB
testcase_16 AC 464 ms
59,104 KB
testcase_17 AC 479 ms
59,136 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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