結果

問題 No.278 連続する整数の和(2)
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-24 18:23:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 56,260 KB
最終ジャッジ日時 2024-09-19 05:11:52
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,352 KB
testcase_01 WA -
testcase_02 AC 148 ms
41,248 KB
testcase_03 AC 132 ms
41,680 KB
testcase_04 AC 129 ms
41,100 KB
testcase_05 AC 131 ms
41,200 KB
testcase_06 AC 130 ms
41,332 KB
testcase_07 AC 117 ms
40,276 KB
testcase_08 WA -
testcase_09 AC 144 ms
41,460 KB
testcase_10 AC 147 ms
41,336 KB
testcase_11 AC 146 ms
41,144 KB
testcase_12 WA -
testcase_13 AC 144 ms
41,356 KB
testcase_14 AC 141 ms
41,232 KB
testcase_15 AC 141 ms
41,344 KB
testcase_16 AC 138 ms
41,484 KB
testcase_17 AC 146 ms
41,328 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 = 0;
    if((n % 2) == 0) {
      n /= 2;
    } else {
      
    }
    for(long i = 1; (i * i) <= n; i++) {
      if((n % i) == 0) {
        long t = n / i;
        ans += (i + t);
      }
    }
    System.out.println(ans);
  }
}
0