結果

問題 No.2142 Segment Zero
ユーザー 👑 NachiaNachia
提出日時 2024-04-21 16:43:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 85,416 KB
実行使用メモリ 58,000 KB
最終ジャッジ日時 2024-10-13 15:40:54
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 174 ms
57,860 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 249 ms
57,884 KB
testcase_04 AC 247 ms
58,000 KB
testcase_05 AC 241 ms
57,896 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 233 ms
57,900 KB
testcase_08 AC 178 ms
57,892 KB
testcase_09 AC 206 ms
57,952 KB
testcase_10 AC 181 ms
57,868 KB
testcase_11 AC 180 ms
57,872 KB
testcase_12 AC 180 ms
57,864 KB
testcase_13 AC 177 ms
57,928 KB
testcase_14 AC 177 ms
57,948 KB
testcase_15 AC 181 ms
57,896 KB
testcase_16 AC 182 ms
57,736 KB
testcase_17 AC 150 ms
48,604 KB
testcase_18 AC 52 ms
16,000 KB
testcase_19 AC 39 ms
14,464 KB
testcase_20 AC 96 ms
33,556 KB
testcase_21 AC 135 ms
37,344 KB
testcase_22 AC 129 ms
42,872 KB
testcase_23 AC 31 ms
14,208 KB
testcase_24 AC 51 ms
20,852 KB
testcase_25 AC 76 ms
23,976 KB
testcase_26 AC 139 ms
41,536 KB
testcase_27 AC 168 ms
43,552 KB
testcase_28 AC 79 ms
28,604 KB
testcase_29 AC 92 ms
33,208 KB
testcase_30 AC 128 ms
42,120 KB
testcase_31 AC 173 ms
41,036 KB
testcase_32 AC 55 ms
19,200 KB
testcase_33 AC 18 ms
10,496 KB
testcase_34 AC 78 ms
24,572 KB
testcase_35 AC 174 ms
56,456 KB
testcase_36 AC 36 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <set>
#include <utility>

using namespace std;
using i64 = long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    i64 N, K; cin >> N >> K;
    vector<i64> S(N+1);
    rep(i,N) S[i+1] = S[i] + (i+1);
    set<i64> Q(S.begin(), S.end());
    int ans = 2;
    rep(i,N+1) if(Q.count(K - (S[N] - S[i]))) ans = 1;
    cout << ans << '\n';
    return 0;
}
0