結果

問題 No.888 約数の総和
ユーザー vjudge1vjudge1
提出日時 2024-09-26 00:39:39
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 163,260 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 00:39:45
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 8 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 12 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

	#include <bits/stdc++.h>
#include<string>
#include<map>
#include<cmath>
#define ll long long
using namespace std;
ll b,l,r,MOD=1e9,j,c=0,k,A[1000000],i,n,mi=INT_MAX,res=0,D[1000000],d=0,e,f,g,h,t=0;
string s;
int main()
{
	//freopen("standard.inp","r",stdin)
	//freopen("standard.out","w",stdout)
	cin>>n;
	for(i=1;i<=sqrt(n);i++)
	if(n%i==0) 
	{
		t+=i+n/i;
	}
	if(sqrt(n)*sqrt(n)==n)
	{
		t-=sqrt(n);

	}
	cout<<t;
}
0