結果
問題 |
No.888 約数の総和
|
ユーザー |
![]() |
提出日時 | 2025-07-10 15:57:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 259 bytes |
コンパイル時間 | 1,662 ms |
コンパイル使用メモリ | 193,460 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2025-07-10 15:57:49 |
合計ジャッジ時間 | 5,752 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 WA * 1 TLE * 1 -- * 14 |
ソースコード
#include <bits/stdc++.h> #define N int (1e6) #define ll long long using namespace std; long long dem(long long n){ ll s=1+n; for(int i=2;i<n;i++) if(n%i==0)s+=i; return s; } ll n; int main() { cin>>n; cout<<dem(n); return 0; }