結果

問題 No.888 約数の総和
ユーザー tentententen
提出日時 2020-08-30 21:53:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-04-27 13:25:18
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,076 KB
testcase_01 AC 132 ms
54,056 KB
testcase_02 AC 133 ms
54,136 KB
testcase_03 AC 130 ms
54,176 KB
testcase_04 AC 134 ms
54,088 KB
testcase_05 AC 130 ms
54,068 KB
testcase_06 AC 132 ms
53,888 KB
testcase_07 AC 135 ms
54,316 KB
testcase_08 AC 133 ms
54,296 KB
testcase_09 AC 132 ms
54,228 KB
testcase_10 AC 133 ms
54,320 KB
testcase_11 AC 135 ms
54,132 KB
testcase_12 AC 117 ms
52,884 KB
testcase_13 AC 130 ms
54,156 KB
testcase_14 AC 133 ms
54,400 KB
testcase_15 AC 133 ms
53,992 KB
testcase_16 AC 132 ms
54,188 KB
testcase_17 AC 131 ms
54,172 KB
testcase_18 AC 147 ms
54,276 KB
testcase_19 AC 145 ms
54,456 KB
testcase_20 AC 148 ms
54,332 KB
testcase_21 AC 145 ms
54,108 KB
testcase_22 AC 147 ms
54,124 KB
testcase_23 AC 130 ms
54,068 KB
testcase_24 AC 139 ms
54,152 KB
testcase_25 AC 141 ms
54,260 KB
testcase_26 AC 143 ms
54,140 KB
testcase_27 AC 146 ms
53,860 KB
testcase_28 AC 147 ms
54,412 KB
testcase_29 AC 147 ms
54,044 KB
testcase_30 AC 148 ms
54,284 KB
testcase_31 AC 152 ms
54,268 KB
testcase_32 AC 151 ms
54,240 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