結果
問題 |
No.888 約数の総和
|
ユーザー |
![]() |
提出日時 | 2024-09-26 00:32:46 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 466 bytes |
コンパイル時間 | 2,688 ms |
コンパイル使用メモリ | 243,696 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 00:32:51 |
合計ジャッジ時間 | 3,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define N 100000 ll sum(ll n){ ll ans=0; for(ll i=1;i*i<=n;i++){ if(n%i==0){ ans+=i; if(i!=n/i){ ans+=n/i; } } } return ans; } int main(){ //freopen("stdin.inp","r",stdin); //freopen("stdout.out","w",stdout); //Your code here ll n; cin>>n; cout<<sum(n)<<endl; return 0; }