結果

問題 No.888 約数の総和
ユーザー watarimaycry2watarimaycry2
提出日時 2019-09-20 22:27:39
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 459 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-09-14 18:19:32
合計ジャッジ時間 8,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
60,804 KB
testcase_01 AC 131 ms
53,760 KB
testcase_02 AC 140 ms
54,096 KB
testcase_03 AC 131 ms
53,676 KB
testcase_04 AC 133 ms
54,364 KB
testcase_05 AC 133 ms
53,828 KB
testcase_06 AC 134 ms
54,536 KB
testcase_07 AC 131 ms
53,952 KB
testcase_08 AC 132 ms
53,944 KB
testcase_09 AC 143 ms
54,232 KB
testcase_10 AC 140 ms
53,984 KB
testcase_11 AC 145 ms
53,972 KB
testcase_12 AC 143 ms
53,988 KB
testcase_13 AC 145 ms
54,200 KB
testcase_14 AC 149 ms
53,992 KB
testcase_15 AC 145 ms
54,032 KB
testcase_16 AC 153 ms
53,864 KB
testcase_17 AC 148 ms
54,176 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void myout(Object text){//standard output
		System.out.println(text);
	}
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		//String tmp = sc.next();
		//int tmp = sc.nextInt();
		//Long tmp = sc.nextLong();
		Long n = sc.nextLong();
		Long output = new Long(0);
		for(int i = 1; i <= n; i++){
		    if(n % i == 0){
		        output += i;
		    }
		}
		myout(output);
	}
}
0