結果

問題 No.888 約数の総和
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-09-27 21:34:28
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 564 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 78,824 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-09-24 20:54:35
合計ジャッジ時間 7,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,096 KB
testcase_01 AC 114 ms
54,284 KB
testcase_02 AC 123 ms
53,860 KB
testcase_03 AC 134 ms
54,172 KB
testcase_04 AC 129 ms
54,212 KB
testcase_05 AC 123 ms
54,192 KB
testcase_06 AC 123 ms
54,148 KB
testcase_07 AC 112 ms
52,960 KB
testcase_08 AC 125 ms
53,876 KB
testcase_09 AC 128 ms
54,020 KB
testcase_10 AC 125 ms
54,292 KB
testcase_11 AC 122 ms
54,308 KB
testcase_12 AC 123 ms
54,036 KB
testcase_13 AC 126 ms
54,188 KB
testcase_14 AC 129 ms
54,020 KB
testcase_15 AC 121 ms
54,296 KB
testcase_16 AC 125 ms
54,160 KB
testcase_17 AC 127 ms
54,000 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {

    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = stdin.nextInt();
        
        Set<Integer> facts = new HashSet<>();
        for (int fact = 1; fact * fact <= n; fact++) {
            if (n % fact != 0) continue;
            facts.add(fact);
            facts.add(n / fact);
        }
        
        int ans = facts.stream().mapToInt(Integer::intValue).sum();
        System.out.println(ans);
    }

}
0