結果

問題 No.2142 Segment Zero
ユーザー nononnonon
提出日時 2024-09-23 23:14:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 6,979 ms
コンパイル使用メモリ 251,296 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-09-23 23:16:26
合計ジャッジ時間 22,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 330 ms
50,304 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 328 ms
50,048 KB
testcase_04 AC 518 ms
50,176 KB
testcase_05 AC 508 ms
50,176 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 361 ms
50,304 KB
testcase_08 AC 545 ms
50,176 KB
testcase_09 AC 348 ms
50,176 KB
testcase_10 AC 560 ms
50,176 KB
testcase_11 AC 541 ms
50,176 KB
testcase_12 AC 550 ms
50,176 KB
testcase_13 AC 549 ms
50,176 KB
testcase_14 AC 543 ms
50,176 KB
testcase_15 AC 543 ms
50,304 KB
testcase_16 AC 539 ms
50,176 KB
testcase_17 AC 453 ms
42,368 KB
testcase_18 AC 67 ms
14,336 KB
testcase_19 AC 71 ms
13,056 KB
testcase_20 AC 285 ms
29,440 KB
testcase_21 AC 249 ms
32,768 KB
testcase_22 AC 389 ms
37,504 KB
testcase_23 AC 56 ms
12,928 KB
testcase_24 AC 96 ms
18,432 KB
testcase_25 AC 115 ms
21,120 KB
testcase_26 AC 232 ms
36,224 KB
testcase_27 AC 252 ms
37,888 KB
testcase_28 AC 230 ms
25,088 KB
testcase_29 AC 290 ms
29,056 KB
testcase_30 AC 375 ms
36,864 KB
testcase_31 AC 216 ms
35,840 KB
testcase_32 AC 108 ms
17,024 KB
testcase_33 AC 35 ms
9,728 KB
testcase_34 AC 120 ms
21,632 KB
testcase_35 AC 529 ms
49,024 KB
testcase_36 AC 100 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    long N, K;
    cin >> N >> K;
    K = N * (N + 1) / 2 - K;
    if (K == 0) {
        cout << 0 << endl;
        return 0;
    }
    set<long> S;
    long sum = 0;
    for (int i = 0; i <= N; i++) {
        sum += i;
        S.insert(sum);
    }
    for (long s : S) {
        if (S.count(s + K)) {
            cout << 1 << endl;
            return 0;
        }
    }
    cout << 2 << endl;
}
0