結果
問題 | No.278 連続する整数の和(2) |
ユーザー | rsk0315 |
提出日時 | 2019-01-11 03:28:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 314 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 06:01:08 |
合計ジャッジ時間 | 973 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 11 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 10 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | AC | 9 ms
6,816 KB |
testcase_16 | AC | 7 ms
6,820 KB |
testcase_17 | WA | - |
ソースコード
#include <cstdio> #include <cstdint> int main() { intmax_t N; scanf("%jd", &N); intmax_t M = (N+1) / 2; intmax_t res = 0; for (intmax_t i = 1; i*i <= M; ++i) { if (M % i == 0) { res += i; if (i != M / i) res += M / i; } } printf("%jd\n", res); }