結果
問題 | No.278 連続する整数の和(2) |
ユーザー | niyarin |
提出日時 | 2016-11-08 18:06:53 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 47 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 815,328 KB |
最終ジャッジ日時 | 2024-11-25 04:55:34 |
合計ジャッジ時間 | 2,425 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,820 KB |
testcase_02 | AC | 11 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | AC | 18 ms
8,192 KB |
testcase_05 | MLE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
ソースコード
N = input() if N%2: print N+1 else: v = N / 2 ans = 0 for i in range(1,v+1): if (v%i == 0): ans += i print ans