結果
| 問題 | 
                            No.2142 Segment Zero
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-12-02 22:03:34 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 10 ms / 2,000 ms | 
| コード長 | 763 bytes | 
| コンパイル時間 | 1,711 ms | 
| コンパイル使用メモリ | 192,016 KB | 
| 最終ジャッジ日時 | 2025-02-09 03:52:10 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 35 | 
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using ld = long double;
int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    ll N,K; cin >> N >> K;
    if(K == 0) {
        cout << 1 << endl;
        return 0;
    }
    K = N * (N + 1) / 2 - K;
    // x(2y+x-1) = 2K
    for(ll x = 1; x <= N; x++) {
        if((2 * K) % x == 0) {
            // 2y = 2K/x - x + 1
            ll z = (2 * K) / x - x + 1;
            if(z % 2 == 0) {
                ll y = z / 2;
                if(x * (2 * y + x - 1) == 2 * K && x + y <= N) {
                    cout << 1 << endl;
                    return 0;
                }
            }
        }
    }
    cout << 2 << endl;
    return 0;
}