結果

問題 No.888 約数の総和
ユーザー tentententen
提出日時 2020-08-30 21:52:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-11-15 15:34:14
合計ジャッジ時間 7,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,196 KB
testcase_01 AC 120 ms
54,032 KB
testcase_02 AC 115 ms
54,108 KB
testcase_03 WA -
testcase_04 AC 121 ms
53,872 KB
testcase_05 AC 106 ms
52,792 KB
testcase_06 AC 115 ms
53,988 KB
testcase_07 AC 118 ms
54,004 KB
testcase_08 AC 122 ms
54,184 KB
testcase_09 AC 119 ms
53,048 KB
testcase_10 AC 123 ms
54,192 KB
testcase_11 AC 106 ms
53,104 KB
testcase_12 AC 110 ms
52,888 KB
testcase_13 AC 120 ms
53,884 KB
testcase_14 AC 129 ms
53,888 KB
testcase_15 AC 125 ms
54,060 KB
testcase_16 AC 106 ms
52,976 KB
testcase_17 AC 106 ms
52,992 KB
testcase_18 AC 138 ms
54,116 KB
testcase_19 AC 129 ms
54,072 KB
testcase_20 AC 127 ms
53,948 KB
testcase_21 AC 134 ms
52,900 KB
testcase_22 AC 136 ms
53,944 KB
testcase_23 AC 126 ms
54,124 KB
testcase_24 AC 136 ms
54,092 KB
testcase_25 AC 139 ms
53,984 KB
testcase_26 AC 131 ms
54,116 KB
testcase_27 AC 129 ms
53,948 KB
testcase_28 AC 133 ms
54,124 KB
testcase_29 AC 132 ms
54,128 KB
testcase_30 AC 120 ms
53,044 KB
testcase_31 AC 131 ms
53,284 KB
testcase_32 AC 133 ms
53,160 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 ans = n + 1;
    	for (long i = 2; i <= Math.sqrt(n); i++) {
    	    if (n % i == 0) {
    	        ans += i;
    	        if (i * i < n) {
    	            ans += n / i;
    	        }
    	    }
    	}
    	System.out.println(ans);
    }
}
0