結果
問題 | No.278 連続する整数の和(2) |
ユーザー | しらっ亭 |
提出日時 | 2015-09-05 21:48:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 72 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 821,376 KB |
最終ジャッジ日時 | 2024-07-19 04:14:54 |
合計ジャッジ時間 | 1,986 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | AC | 29 ms
10,496 KB |
testcase_04 | AC | 32 ms
11,008 KB |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
def divisors(n): s = [False] * (n + 1) s[1] = s[n] = True for x in range(2, int(n ** 0.5) + 1): if n % x == 0: s[x] = True y = n // x if y != x: s[y] = True return [i for i in range(n + 1) if s[i]] def solve(): N = int(input()) g = N if N % 2 else N // 2 print(sum(divisors(g))) if __name__ == '__main__': solve()