結果
| 問題 | No.888 約数の総和 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-12-26 14:30:45 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 163 ms / 2,000 ms |
| + 663µs | |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 59 ms |
| コンパイル使用メモリ | 14,848 KB |
| 実行使用メモリ | 11,136 KB |
| 最終ジャッジ日時 | 2026-09-10 00:32:32 |
| 合計ジャッジ時間 | 3,789 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
N = int(input())
L = []
for n in range(1, int(N**0.5)+1):
if N % n == 0:
L += [n]
if not (N // n) in L:
L += [N // n]
print(sum(L))