結果

問題 No.2142 Segment Zero
ユーザー nononnonon
提出日時 2024-09-23 22:48:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 9,004 ms
コンパイル使用メモリ 251,032 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-09-23 22:59:31
合計ジャッジ時間 23,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 291 ms
50,176 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 459 ms
50,176 KB
testcase_05 AC 474 ms
50,176 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 318 ms
50,176 KB
testcase_08 AC 492 ms
50,048 KB
testcase_09 AC 295 ms
50,304 KB
testcase_10 AC 545 ms
50,304 KB
testcase_11 AC 498 ms
50,176 KB
testcase_12 AC 502 ms
50,176 KB
testcase_13 AC 491 ms
50,176 KB
testcase_14 AC 499 ms
50,176 KB
testcase_15 AC 483 ms
50,176 KB
testcase_16 AC 525 ms
50,176 KB
testcase_17 AC 407 ms
42,368 KB
testcase_18 AC 57 ms
14,336 KB
testcase_19 AC 63 ms
13,184 KB
testcase_20 AC 257 ms
29,312 KB
testcase_21 AC 224 ms
32,640 KB
testcase_22 AC 352 ms
37,504 KB
testcase_23 AC 50 ms
12,800 KB
testcase_24 AC 87 ms
18,432 KB
testcase_25 AC 104 ms
21,120 KB
testcase_26 AC 207 ms
36,224 KB
testcase_27 AC 223 ms
37,888 KB
testcase_28 AC 210 ms
25,216 KB
testcase_29 AC 277 ms
29,056 KB
testcase_30 AC 352 ms
36,864 KB
testcase_31 AC 222 ms
35,840 KB
testcase_32 AC 98 ms
17,024 KB
testcase_33 AC 34 ms
9,600 KB
testcase_34 AC 112 ms
21,760 KB
testcase_35 AC 508 ms
49,024 KB
testcase_36 AC 111 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 = 1; 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