結果

問題 No.2142 Segment Zero
ユーザー WangzyyWangzyy
提出日時 2023-04-27 16:29:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 189,844 KB
実行使用メモリ 136,192 KB
最終ジャッジ日時 2024-11-16 22:11:29
合計ジャッジ時間 21,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,008 KB
testcase_01 AC 923 ms
136,192 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 753 ms
136,064 KB
testcase_05 AC 760 ms
136,064 KB
testcase_06 AC 6 ms
11,008 KB
testcase_07 AC 244 ms
47,616 KB
testcase_08 AC 924 ms
136,064 KB
testcase_09 AC 561 ms
90,112 KB
testcase_10 AC 917 ms
135,936 KB
testcase_11 AC 900 ms
136,064 KB
testcase_12 AC 899 ms
136,192 KB
testcase_13 AC 918 ms
136,064 KB
testcase_14 AC 934 ms
136,064 KB
testcase_15 AC 910 ms
136,064 KB
testcase_16 AC 908 ms
136,064 KB
testcase_17 AC 745 ms
114,944 KB
testcase_18 AC 29 ms
15,488 KB
testcase_19 AC 110 ms
28,928 KB
testcase_20 AC 495 ms
80,384 KB
testcase_21 AC 347 ms
64,384 KB
testcase_22 AC 656 ms
102,016 KB
testcase_23 AC 164 ms
36,224 KB
testcase_24 AC 261 ms
50,944 KB
testcase_25 AC 154 ms
34,688 KB
testcase_26 AC 453 ms
76,928 KB
testcase_27 AC 232 ms
47,872 KB
testcase_28 AC 420 ms
69,120 KB
testcase_29 AC 482 ms
79,616 KB
testcase_30 AC 633 ms
100,352 KB
testcase_31 AC 26 ms
14,720 KB
testcase_32 AC 194 ms
41,344 KB
testcase_33 AC 98 ms
26,752 KB
testcase_34 AC 204 ms
42,496 KB
testcase_35 AC 881 ms
132,864 KB
testcase_36 AC 183 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize(3,"Ofast","inline")
#include <bits/stdc++.h>

#define ios_close std::ios::sync_with_stdio(false), std::cin.tie(nullptr), std::cout.tie(nullptr)

using ll = long long;
using ull = unsigned long long;
using i128 = __int128;
#define Pi  acos(-1.0);
#define PINF 0x3f3f3f3f
#define NINF -0x3f3f3f3f

void solve(){
    std::vector<ll> pre(1000010);
    int n;
    ll k;
    scanf("%d %lld", &n, &k);
    for(int i = 1; i <= n; i ++ ){
        pre[i] = pre[i - 1] + i;
    }
    if(pre[n] == k){
        printf("0");
        return ;
    }
    std::map<ll, bool> map;
    ll t = k - pre[n];
    for(int i = 1; i <= n; i ++ ){
        if(map[t + pre[i]]){
            printf("1");
            return ;
        }
        map[pre[i]] = true;
    }
    printf("2");
}

int main(){
#if 0
    ios_close;
#endif

#if 0
    freopen(".in", "r", stdin);
    freopen(".out", "w", stdout);
#endif
    int T = 1;
#if 0
    std::cin >> T;
#endif
    while(T -- ){
        solve();
    }
    return 0;
}
0