結果
問題 |
No.888 約数の総和
|
ユーザー |
|
提出日時 | 2019-10-28 21:48:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 113 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-09-14 21:19:58 |
合計ジャッジ時間 | 5,159 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 TLE * 1 -- * 14 |
ソースコード
target = int(input()) sum = 0 for i in range(1,target+1) : if target % i == 0 : sum += i print(sum)