結果

問題 No.2142 Segment Zero
ユーザー 👑 NachiaNachia
提出日時 2024-04-21 16:44:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 80,928 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-13 15:41:52
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 42 ms
18,688 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 100 ms
18,816 KB
testcase_04 AC 93 ms
18,688 KB
testcase_05 AC 90 ms
18,688 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 87 ms
18,760 KB
testcase_08 AC 44 ms
18,816 KB
testcase_09 AC 68 ms
18,816 KB
testcase_10 AC 41 ms
18,816 KB
testcase_11 AC 41 ms
18,816 KB
testcase_12 AC 42 ms
18,764 KB
testcase_13 AC 43 ms
18,688 KB
testcase_14 AC 41 ms
18,816 KB
testcase_15 AC 46 ms
18,688 KB
testcase_16 AC 42 ms
18,688 KB
testcase_17 AC 34 ms
16,180 KB
testcase_18 AC 23 ms
6,784 KB
testcase_19 AC 16 ms
6,400 KB
testcase_20 AC 24 ms
11,904 KB
testcase_21 AC 50 ms
12,928 KB
testcase_22 AC 30 ms
14,592 KB
testcase_23 AC 10 ms
6,400 KB
testcase_24 AC 15 ms
8,192 KB
testcase_25 AC 29 ms
9,216 KB
testcase_26 AC 41 ms
14,208 KB
testcase_27 AC 60 ms
14,716 KB
testcase_28 AC 21 ms
10,496 KB
testcase_29 AC 28 ms
11,776 KB
testcase_30 AC 31 ms
14,336 KB
testcase_31 AC 65 ms
14,080 KB
testcase_32 AC 21 ms
7,808 KB
testcase_33 AC 7 ms
5,248 KB
testcase_34 AC 26 ms
9,216 KB
testcase_35 AC 41 ms
18,400 KB
testcase_36 AC 13 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#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);
    vector<i64> Q = S;
    sort(Q.begin(), Q.end());
    int ans = 2;
    rep(i,N+1) if(binary_search(Q.begin(), Q.end(), K - (S[N] - S[i]))) ans = 1;
    cout << ans << '\n';
    return 0;
}
0