結果

問題 No.888 約数の総和
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-09-27 21:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 55,468 KB
最終ジャッジ日時 2024-09-24 20:56:39
合計ジャッジ時間 7,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,440 KB
testcase_01 AC 134 ms
54,384 KB
testcase_02 AC 133 ms
54,180 KB
testcase_03 AC 134 ms
54,228 KB
testcase_04 AC 133 ms
54,392 KB
testcase_05 AC 122 ms
53,152 KB
testcase_06 AC 131 ms
54,340 KB
testcase_07 AC 133 ms
54,368 KB
testcase_08 AC 134 ms
54,148 KB
testcase_09 AC 119 ms
53,128 KB
testcase_10 AC 132 ms
54,168 KB
testcase_11 AC 134 ms
54,004 KB
testcase_12 AC 132 ms
54,312 KB
testcase_13 AC 132 ms
54,096 KB
testcase_14 AC 132 ms
54,364 KB
testcase_15 AC 133 ms
54,444 KB
testcase_16 AC 134 ms
54,260 KB
testcase_17 AC 134 ms
54,260 KB
testcase_18 AC 141 ms
53,488 KB
testcase_19 AC 167 ms
54,408 KB
testcase_20 AC 136 ms
53,512 KB
testcase_21 AC 177 ms
55,088 KB
testcase_22 AC 153 ms
54,180 KB
testcase_23 AC 135 ms
54,280 KB
testcase_24 AC 129 ms
55,468 KB
testcase_25 AC 147 ms
54,256 KB
testcase_26 AC 143 ms
54,336 KB
testcase_27 AC 137 ms
53,284 KB
testcase_28 AC 148 ms
54,488 KB
testcase_29 AC 151 ms
54,408 KB
testcase_30 AC 146 ms
54,308 KB
testcase_31 AC 153 ms
54,100 KB
testcase_32 AC 154 ms
54,548 KB
権限があれば一括ダウンロードができます

ソースコード

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);
        long n = stdin.nextLong();
        
        Set<Long> facts = new HashSet<>();
        for (long fact = 1; fact * fact <= n; fact++) {
            if (n % fact != 0) continue;
            facts.add(fact);
            facts.add(n / fact);
        }
        
        long ans = facts.stream().mapToLong(Long::longValue).sum();
        System.out.println(ans);
    }

}
0