結果
問題 | No.278 連続する整数の和(2) |
ユーザー | xuzijian629 |
提出日時 | 2018-11-02 22:37:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 2,511 ms |
コンパイル使用メモリ | 199,400 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 15:15:10 |
合計ジャッジ時間 | 3,390 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 12 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 12 ms
5,248 KB |
testcase_10 | AC | 16 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 8 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 12 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; using vi = vector<i64>; using vvi = vector<vi>; int main() { i64 n; i64 ret = 0; cin >> n; for (i64 i = 1; i * i <= n; i++) { if (n % i == 0) { ret += i; if (i != n / i) { ret += n / i; } } } cout << ret << endl; }