結果
| 問題 |
No.2142 Segment Zero
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-02 22:03:01 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 695 bytes |
| コンパイル時間 | 1,853 ms |
| コンパイル使用メモリ | 191,828 KB |
| 最終ジャッジ日時 | 2025-02-09 03:52:02 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 34 WA * 1 |
ソースコード
#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;
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;
}