結果

問題 No.2142 Segment Zero
ユーザー ぷらぷら
提出日時 2022-12-02 21:27:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 203,876 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-10-09 22:31:22
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 7 ms
11,008 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 7 ms
11,028 KB
testcase_04 AC 76 ms
11,008 KB
testcase_05 AC 76 ms
11,008 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 8 ms
11,004 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 8 ms
11,108 KB
testcase_10 AC 34 ms
11,136 KB
testcase_11 AC 33 ms
11,020 KB
testcase_12 AC 32 ms
11,008 KB
testcase_13 AC 32 ms
11,000 KB
testcase_14 AC 33 ms
11,008 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 29 ms
9,856 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 20 ms
7,552 KB
testcase_21 AC 23 ms
8,092 KB
testcase_22 AC 25 ms
9,048 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 3 ms
5,888 KB
testcase_25 AC 4 ms
6,144 KB
testcase_26 AC 7 ms
8,740 KB
testcase_27 AC 12 ms
8,960 KB
testcase_28 AC 16 ms
6,784 KB
testcase_29 AC 19 ms
7,648 KB
testcase_30 AC 24 ms
8,836 KB
testcase_31 AC 5 ms
8,576 KB
testcase_32 AC 12 ms
5,504 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 5 ms
6,400 KB
testcase_35 AC 33 ms
10,976 KB
testcase_36 AC 11 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N;
    long long K;
    cin >> N >> K;
    vector<long long>sum(N+1);
    for(int i = 0; i < N; i++) {
        sum[i+1] = sum[i]+i+1;
    }
    for(int i = 0; i < N; i++) {
        int it = lower_bound(sum.begin(),sum.end(),sum[i]+(sum[N]-K))-sum.begin();
        if(it <= N && sum[it] == sum[i]+(sum[N]-K)) {
            cout << 1 << endl;
            return 0;
        }
    }
    cout << 2 << endl;
}
0