結果

問題 No.2142 Segment Zero
ユーザー nono00nono00
提出日時 2022-12-29 17:31:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 11,148 KB
最終ジャッジ日時 2024-05-03 16:13:35
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 6 ms
11,032 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
11,036 KB
testcase_04 AC 39 ms
11,012 KB
testcase_05 AC 40 ms
10,992 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 9 ms
10,960 KB
testcase_08 AC 30 ms
11,072 KB
testcase_09 AC 7 ms
11,088 KB
testcase_10 AC 31 ms
11,000 KB
testcase_11 AC 31 ms
11,024 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 31 ms
11,112 KB
testcase_14 AC 30 ms
11,052 KB
testcase_15 AC 30 ms
11,124 KB
testcase_16 AC 32 ms
11,148 KB
testcase_17 AC 26 ms
9,684 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 19 ms
7,580 KB
testcase_21 AC 19 ms
8,072 KB
testcase_22 AC 22 ms
8,884 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 8 ms
8,632 KB
testcase_27 AC 13 ms
9,136 KB
testcase_28 AC 15 ms
6,940 KB
testcase_29 AC 18 ms
7,552 KB
testcase_30 AC 23 ms
8,728 KB
testcase_31 AC 5 ms
8,672 KB
testcase_32 AC 10 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 6 ms
6,944 KB
testcase_35 AC 30 ms
10,928 KB
testcase_36 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

template<typename T>
void print(const T t, bool ln = true) {
    cout << t;
    if (ln) {
        cout << '\n';
    } else {
        cout << ' ';
    }
}

template<typename T>
void printv(const vector<T> &v) {
    for (int i = 0; i < (int)v.size(); i++) {
        print(v[i], false);
    }
    cout << '\n';
}

template<typename T>
void printvv(const vector<vector<T>> &vv) {
    for (int i = 0; i < (int)vv.size(); i++) {
        vprint(vv[i]);
    }
}

void solve() {
    // 1回または2回で可能
    long long n, k;
    cin >> n >> k;
    long long m = n * (n + 1) / 2 - k;
    vector<long long> a(n + 1);
    for (int i = 1; i <= n; i++) {
        a[i] = a[i - 1] + i;
    }

    // printv(a);
    
    for (int l = 0; l < n; l++) {
        auto it = lower_bound(a.begin() + l, a.end(), a[l] + m);
        if (it == a.end()) {
            continue;
        } else if (*it == a[l] + m) {
            print(1);
            return;
        }
    }

    print(2);
}

int main() {
    int q = 1;
    // cin >> q;
    while (q--) {
        solve();
    }
}
0