結果
問題 |
No.888 約数の総和
|
ユーザー |
![]() |
提出日時 | 2025-07-10 15:54:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 258 bytes |
コンパイル時間 | 1,653 ms |
コンパイル使用メモリ | 193,472 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2025-07-10 15:54:20 |
合計ジャッジ時間 | 5,668 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 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=0; for(int i=1;i<=n;i++) if(n%i==0)s+=i; return s; } ll n; int main() { cin>>n; cout<<dem(n); return 0; }