結果

問題 No.888 約数の総和
ユーザー htensaihtensai
提出日時 2019-11-11 12:30:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-09-15 05:11:30
合計ジャッジ時間 9,463 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,220 KB
testcase_01 AC 131 ms
40,996 KB
testcase_02 AC 128 ms
40,980 KB
testcase_03 AC 133 ms
41,192 KB
testcase_04 AC 128 ms
41,096 KB
testcase_05 AC 119 ms
40,068 KB
testcase_06 AC 134 ms
41,324 KB
testcase_07 AC 134 ms
40,548 KB
testcase_08 AC 119 ms
39,284 KB
testcase_09 AC 135 ms
41,088 KB
testcase_10 AC 135 ms
40,636 KB
testcase_11 AC 134 ms
40,512 KB
testcase_12 AC 133 ms
41,368 KB
testcase_13 AC 120 ms
39,568 KB
testcase_14 AC 134 ms
40,404 KB
testcase_15 AC 134 ms
40,644 KB
testcase_16 AC 160 ms
40,732 KB
testcase_17 AC 162 ms
41,088 KB
testcase_18 AC 178 ms
40,540 KB
testcase_19 AC 179 ms
40,864 KB
testcase_20 AC 172 ms
40,544 KB
testcase_21 AC 174 ms
40,944 KB
testcase_22 AC 174 ms
41,192 KB
testcase_23 AC 138 ms
40,672 KB
testcase_24 AC 145 ms
41,012 KB
testcase_25 AC 144 ms
41,024 KB
testcase_26 AC 144 ms
40,912 KB
testcase_27 AC 149 ms
41,108 KB
testcase_28 AC 150 ms
41,484 KB
testcase_29 AC 149 ms
40,928 KB
testcase_30 AC 144 ms
40,684 KB
testcase_31 AC 147 ms
40,540 KB
testcase_32 AC 146 ms
40,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long sum = 0;
		for (long idx = 1; idx <= Math.sqrt(n); idx++) {
		    if (n % idx == 0) {
		        sum += idx;
		        if (idx != n / idx) {
		            sum += n / idx;
		        }
		    }
		}
		System.out.println(sum);
	}
}
0