結果

問題 No.888 約数の総和
ユーザー tentententen
提出日時 2020-08-30 21:53:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 55,932 KB
最終ジャッジ日時 2024-11-15 15:34:27
合計ジャッジ時間 7,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
55,932 KB
testcase_01 AC 129 ms
53,760 KB
testcase_02 AC 133 ms
54,196 KB
testcase_03 AC 130 ms
54,008 KB
testcase_04 AC 134 ms
54,012 KB
testcase_05 AC 134 ms
53,892 KB
testcase_06 AC 134 ms
54,112 KB
testcase_07 AC 135 ms
53,980 KB
testcase_08 AC 133 ms
53,848 KB
testcase_09 AC 132 ms
54,064 KB
testcase_10 AC 129 ms
53,860 KB
testcase_11 AC 125 ms
54,100 KB
testcase_12 AC 121 ms
54,184 KB
testcase_13 AC 124 ms
54,300 KB
testcase_14 AC 111 ms
52,736 KB
testcase_15 AC 125 ms
54,076 KB
testcase_16 AC 121 ms
54,224 KB
testcase_17 AC 128 ms
54,068 KB
testcase_18 AC 142 ms
54,124 KB
testcase_19 AC 134 ms
53,856 KB
testcase_20 AC 135 ms
54,328 KB
testcase_21 AC 137 ms
54,096 KB
testcase_22 AC 140 ms
54,076 KB
testcase_23 AC 128 ms
53,936 KB
testcase_24 AC 133 ms
54,132 KB
testcase_25 AC 138 ms
54,256 KB
testcase_26 AC 141 ms
53,952 KB
testcase_27 AC 138 ms
54,056 KB
testcase_28 AC 137 ms
54,120 KB
testcase_29 AC 135 ms
53,880 KB
testcase_30 AC 125 ms
53,240 KB
testcase_31 AC 146 ms
54,048 KB
testcase_32 AC 142 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long n = sc.nextLong();
    	if (n == 1) {
    	    System.out.println(1);
    	    return;
    	}
    	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