結果

問題 No.888 約数の総和
ユーザー 37zigen37zigen
提出日時 2019-09-20 12:34:58
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 56,088 KB
最終ジャッジ日時 2024-09-14 00:42:01
合計ジャッジ時間 7,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,228 KB
testcase_01 AC 135 ms
53,720 KB
testcase_02 AC 133 ms
53,940 KB
testcase_03 AC 132 ms
53,800 KB
testcase_04 AC 133 ms
53,776 KB
testcase_05 AC 132 ms
54,184 KB
testcase_06 AC 132 ms
53,944 KB
testcase_07 AC 118 ms
52,576 KB
testcase_08 AC 132 ms
54,172 KB
testcase_09 AC 117 ms
52,896 KB
testcase_10 AC 133 ms
54,256 KB
testcase_11 AC 132 ms
54,084 KB
testcase_12 AC 133 ms
53,820 KB
testcase_13 AC 132 ms
54,040 KB
testcase_14 AC 133 ms
54,156 KB
testcase_15 AC 129 ms
54,036 KB
testcase_16 AC 130 ms
54,120 KB
testcase_17 AC 134 ms
54,108 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 #

// ans が 32bit 整数

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		if (!(1 <= N && N <= 1e12))
			throw new AssertionError();
		int ans = 0;
		for (long i = 1; i * i <= N; ++i) {
			if (N % i == 0)
				ans += (i + (i == N / i ? 0 : N / i));
		}
		System.out.println(ans);
	}
}
0