結果
問題 |
No.888 約数の総和
|
ユーザー |
|
提出日時 | 2020-06-11 19:41:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 1,545 ms |
コンパイル使用メモリ | 166,308 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-24 03:15:28 |
合計ジャッジ時間 | 5,479 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 TLE * 1 -- * 14 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ ll n; cin>>n; ll ans=0; for(int i=1; i*2<n+1; i++){ if(n%i==0) ans+=i; } cout << ans+n << endl; }