結果

問題 No.888 約数の総和
ユーザー 37zigen37zigen
提出日時 2019-09-20 00:18:15
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 489 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 61,388 KB
最終ジャッジ日時 2024-07-21 20:06:08
合計ジャッジ時間 8,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
60,964 KB
testcase_01 AC 145 ms
54,004 KB
testcase_02 AC 146 ms
53,864 KB
testcase_03 AC 140 ms
54,036 KB
testcase_04 AC 142 ms
53,984 KB
testcase_05 AC 142 ms
54,192 KB
testcase_06 AC 141 ms
53,832 KB
testcase_07 AC 142 ms
54,264 KB
testcase_08 AC 141 ms
54,264 KB
testcase_09 AC 140 ms
54,320 KB
testcase_10 AC 146 ms
53,688 KB
testcase_11 AC 142 ms
54,120 KB
testcase_12 AC 141 ms
54,676 KB
testcase_13 AC 142 ms
53,996 KB
testcase_14 AC 143 ms
53,876 KB
testcase_15 AC 140 ms
54,008 KB
testcase_16 AC 141 ms
53,968 KB
testcase_17 AC 140 ms
53,616 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// i*i が 32bit を超える時、正しくWAになるか

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();
		long ans = 0;
		for (int i = 1; i * i <= N; ++i) {
			if (N % i == 0)
				ans += (i + (i == N / i ? 0 : N / i));
		}
		System.out.println(ans);
	}
}
0