結果

問題 No.1256 連続整数列
ユーザー れいんれいん
提出日時 2024-11-29 11:25:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 245,496 KB
実行使用メモリ 11,240 KB
最終ジャッジ日時 2024-11-29 11:26:00
合計ジャッジ時間 4,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,008 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 6 ms
11,008 KB
testcase_07 AC 6 ms
11,008 KB
testcase_08 AC 5 ms
11,012 KB
testcase_09 AC 59 ms
11,064 KB
testcase_10 AC 57 ms
10,972 KB
testcase_11 AC 6 ms
11,040 KB
testcase_12 AC 7 ms
11,008 KB
testcase_13 WA -
testcase_14 AC 5 ms
10,972 KB
testcase_15 WA -
testcase_16 AC 59 ms
11,104 KB
testcase_17 AC 24 ms
11,008 KB
testcase_18 WA -
testcase_19 AC 19 ms
11,008 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 5 ms
10,964 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int A;
    cin >> A;
    vector<long long> sum(1e6 + 1);
    for (int i = 1; i <= 1e6; i++)
    {
        sum[i] = sum[i - 1] + i;
    }
    for (int i = 1; i <= 1e6; i++)
    {
        long long search = sum[i] - A;
        auto it = lower_bound(sum.begin(), sum.end(), search);
        if (it == sum.end())
        {
            continue;
        }
        if (*it == search)
        {
            int a = it - sum.begin();
            if (i - (it - sum.begin()) >= 3)
            {
                cout << "YES";
                return 0;
            }
        }
    }
    cout << "NO";
}
0