結果
問題 | No.888 約数の総和 |
ユーザー |
![]() |
提出日時 | 2024-09-26 00:28:50 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 2,594 ms |
コンパイル使用メモリ | 243,348 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-09-26 00:28:58 |
合計ジャッジ時間 | 6,525 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 15 TLE * 1 -- * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define N 100000 ll sum(ll n){ ll ans=0; for(int i=2;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; }