結果

問題 No.2142 Segment Zero
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-12-03 01:43:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 199,532 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 04:24:51
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 13 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 13 ms
6,816 KB
testcase_11 AC 13 ms
6,816 KB
testcase_12 AC 13 ms
6,816 KB
testcase_13 AC 13 ms
6,816 KB
testcase_14 AC 13 ms
6,820 KB
testcase_15 AC 13 ms
6,820 KB
testcase_16 AC 13 ms
6,816 KB
testcase_17 AC 11 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 8 ms
6,816 KB
testcase_21 WA -
testcase_22 AC 10 ms
6,816 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 7 ms
6,820 KB
testcase_29 AC 8 ms
6,820 KB
testcase_30 AC 10 ms
6,820 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 13 ms
6,816 KB
testcase_36 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    ll N, K;
    cin >> N >> K;
    K = (N * (N + 1)) / 2 - K;
    K *= 2;
    for (ll x = 1; x * x <= K; x ++) {
        if (K % x) {
            continue;
        }
        ll y = K / x;
        if ((x + y) % 2 == 0) {
            continue;
        }
        ll a = (y + (x - 1)) / 2, b = (y - (x - 1)) / 2;
        if (1 <= b && a <= N) {
            cout << 1 << endl;
        }
    }
    cout << 2 << endl;
}
0