結果

問題 No.2142 Segment Zero
ユーザー nono00nono00
提出日時 2022-12-29 17:31:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-24 18:35:40
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 6 ms
11,076 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
11,008 KB
testcase_04 AC 38 ms
11,008 KB
testcase_05 AC 39 ms
11,008 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 9 ms
10,992 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 8 ms
11,004 KB
testcase_10 AC 33 ms
11,108 KB
testcase_11 AC 33 ms
11,068 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 31 ms
10,968 KB
testcase_17 AC 27 ms
9,728 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 18 ms
7,552 KB
testcase_21 AC 18 ms
8,064 KB
testcase_22 AC 23 ms
8,960 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 4 ms
5,888 KB
testcase_25 AC 6 ms
6,144 KB
testcase_26 AC 8 ms
8,704 KB
testcase_27 AC 14 ms
8,960 KB
testcase_28 AC 15 ms
6,784 KB
testcase_29 AC 18 ms
7,552 KB
testcase_30 AC 22 ms
8,852 KB
testcase_31 AC 5 ms
8,704 KB
testcase_32 AC 10 ms
5,632 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 5 ms
6,272 KB
testcase_35 AC 30 ms
10,796 KB
testcase_36 AC 10 ms
5,248 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