結果

問題 No.2142 Segment Zero
ユーザー Varun TejaVarun Teja
提出日時 2022-12-02 23:00:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,155 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 173,188 KB
実行使用メモリ 105,076 KB
最終ジャッジ日時 2024-10-10 01:30:22
合計ジャッジ時間 30,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1,257 ms
105,068 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1,288 ms
105,048 KB
testcase_05 AC 1,230 ms
104,980 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 1,221 ms
104,932 KB
testcase_09 WA -
testcase_10 AC 1,230 ms
105,024 KB
testcase_11 AC 1,228 ms
104,952 KB
testcase_12 AC 1,280 ms
105,060 KB
testcase_13 AC 1,284 ms
104,956 KB
testcase_14 AC 1,241 ms
105,076 KB
testcase_15 AC 1,249 ms
104,960 KB
testcase_16 AC 1,244 ms
105,004 KB
testcase_17 AC 969 ms
87,840 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 564 ms
59,776 KB
testcase_21 WA -
testcase_22 AC 812 ms
77,440 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 528 ms
50,560 KB
testcase_29 AC 622 ms
59,264 KB
testcase_30 AC 782 ms
75,960 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1,210 ms
102,340 KB
testcase_36 AC 122 ms
25,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main() {
    int n, k; cin >> n >> k;
    int sm = (n * (n + 1)) / 2; long long diff1 = sm - k, diff2 = sm - k;
    int F[n], B[n], i; set<long long> stf, stb;
    for(i = 0; i < n; i++) {
        F[i] = ((i + 1) * (i + 2)) / 2;
        B[n - i - 1] = (n * (n + 1)) / 2 - ((i + 2) * (i + 1)) / 2;
        stf.insert(F[i]);
        stb.insert(B[n - i - 1]);
    }
    int front = 0, back = 0;
    for(i = 0; i < n; i++) {
        if(diff1 > F[i]) {
            diff1 -= F[i];
        }
        else {
            diff1 -= F[i];
            diff1 = abs(diff1);
            if(stf.find(diff1) == stf.end())    front = 2;
            else    front = 1;
            break;
        }
    }
    for(i = n - 1; i >= 0; i--) {
        if(diff2 > B[i]) {
            diff2 -= B[i];
        }
        else  {
            diff2 -= B[i];
            diff2 = abs(diff2);
            if(stb.find(diff2) == stb.end())    back = 2;
            else                                back = 1;
            break;
        }
    }
    if(front == 1 || back == 1) cout << 1 << endl;
    else    cout << 2 << endl;
    return 0;
}
0