結果

問題 No.888 約数の総和
ユーザー vjudge1vjudge1
提出日時 2024-09-25 23:29:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 923 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 202,056 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 23:29:26
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
using namespace std;
int nto(int x)
{
	int i=2,k=sqrt(x);
	while (x%i!=0&&i<=k) i++;
	if (i>k&&x>1) return 1;
	else return 0;
}
int tong(int x)
{
	int t=0,i;
	for (i=x;i>0;i/=10) t+=i%10;
return t;
}
int dem(int x)
{
	int d=0,i;
	for (i=x;i>0;i/=10) d++;
return d;
}
int dem_u(int x)
{
	int d=0,k=sqrt(x),i;
	for (i=1;i<=k;i++) 
	  if (x%i==0) d+=2;  
	if(k*k==x) d--;     
return d;
}
int tong_u(int x)
{
	int t=0,k=sqrt(x),i;
	for (i=1;i<=k;i++) 
	  if (x%i==0) t+=i+x/i;  
	if(k*k==x) t-=k;     
return t;
}
int dao(int x)
{
	int m=0,i;
	for (i=x;i>0;i/=10) 
	  m=m*10+i%10;
return m;
}
int ktra(int x)
{
	int k=sqrt(x);
	if(k*k==x) return 1;
else return 0;
}
int kt_ht(int x)
{
	int t=1,k=sqrt(x),i;
	for (i=2;i<=k;i++) 
	  if (x%i==0) t+=i+x/i;  
	if(k*k==x) t-=k;     
	if (t==x) return 1;
else return 0;
}
int n;
int main() {
  cin >> n;
  cout << tong_u(n);
  return 0;
}
0