結果
| 問題 |
No.888 約数の総和
|
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-07-14 21:25:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 1,983 ms |
| コンパイル使用メモリ | 193,224 KB |
| 実行使用メモリ | 16,200 KB |
| 最終ジャッジ日時 | 2025-07-14 21:25:55 |
| 合計ジャッジ時間 | 6,148 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 TLE * 1 -- * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
long long n,s;
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
if(n%i==0) s+=i;
cout<<s;
return 0;
}
vjudge1