結果

問題 No.888 約数の総和
ユーザー ks2mks2m
提出日時 2019-09-20 22:29:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 90,616 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-09-14 18:22:36
合計ジャッジ時間 8,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,984 KB
testcase_01 AC 140 ms
53,764 KB
testcase_02 AC 139 ms
53,984 KB
testcase_03 AC 140 ms
54,388 KB
testcase_04 AC 138 ms
53,992 KB
testcase_05 AC 140 ms
54,044 KB
testcase_06 AC 140 ms
54,320 KB
testcase_07 AC 140 ms
53,992 KB
testcase_08 AC 140 ms
53,784 KB
testcase_09 AC 141 ms
54,076 KB
testcase_10 AC 143 ms
54,008 KB
testcase_11 AC 144 ms
54,168 KB
testcase_12 AC 141 ms
53,944 KB
testcase_13 AC 144 ms
54,376 KB
testcase_14 AC 144 ms
54,172 KB
testcase_15 AC 140 ms
53,860 KB
testcase_16 AC 137 ms
53,968 KB
testcase_17 AC 134 ms
53,852 KB
testcase_18 AC 155 ms
54,152 KB
testcase_19 AC 154 ms
54,408 KB
testcase_20 AC 149 ms
53,968 KB
testcase_21 AC 161 ms
53,888 KB
testcase_22 AC 160 ms
54,044 KB
testcase_23 AC 143 ms
54,168 KB
testcase_24 AC 148 ms
54,356 KB
testcase_25 AC 154 ms
54,168 KB
testcase_26 AC 155 ms
54,228 KB
testcase_27 AC 153 ms
53,988 KB
testcase_28 AC 154 ms
54,296 KB
testcase_29 AC 155 ms
53,900 KB
testcase_30 AC 155 ms
54,348 KB
testcase_31 AC 157 ms
54,532 KB
testcase_32 AC 160 ms
53,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		sc.close();

		List<Long> list = new ArrayList<>();
		long end = (long) Math.sqrt(n);
		for (int i = 1; i <= end; i++) {
			if (n % i == 0) {
				list.add((long) i);
			}
		}
		int i = end * end == n ? list.size() - 2 : list.size() - 1;
		for ( ; i >= 0; i--) {
			list.add(n / list.get(i));
		}

		System.out.println(list.stream().mapToLong(a -> a).sum());
	}
}
0