結果

問題 No.2142 Segment Zero
ユーザー eQeeQe
提出日時 2024-12-03 15:13:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,430 bytes
コンパイル時間 5,457 ms
コンパイル使用メモリ 308,832 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-03 15:13:32
合計ジャッジ時間 10,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 90 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 179 ms
5,248 KB
testcase_05 AC 179 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 93 ms
5,248 KB
testcase_08 AC 178 ms
5,248 KB
testcase_09 AC 97 ms
5,248 KB
testcase_10 AC 179 ms
5,248 KB
testcase_11 AC 178 ms
5,248 KB
testcase_12 AC 179 ms
5,248 KB
testcase_13 AC 178 ms
5,248 KB
testcase_14 AC 208 ms
5,248 KB
testcase_15 AC 178 ms
5,248 KB
testcase_16 AC 177 ms
5,248 KB
testcase_17 AC 146 ms
5,248 KB
testcase_18 AC 19 ms
5,248 KB
testcase_19 AC 24 ms
5,248 KB
testcase_20 AC 95 ms
5,248 KB
testcase_21 AC 87 ms
5,248 KB
testcase_22 AC 128 ms
5,248 KB
testcase_23 AC 17 ms
5,248 KB
testcase_24 AC 46 ms
5,248 KB
testcase_25 AC 34 ms
5,248 KB
testcase_26 AC 73 ms
5,248 KB
testcase_27 AC 82 ms
5,248 KB
testcase_28 AC 76 ms
5,248 KB
testcase_29 AC 95 ms
5,248 KB
testcase_30 AC 125 ms
5,248 KB
testcase_31 AC 60 ms
5,248 KB
testcase_32 AC 37 ms
5,248 KB
testcase_33 AC 11 ms
5,248 KB
testcase_34 AC 36 ms
5,248 KB
testcase_35 AC 175 ms
5,248 KB
testcase_36 AC 36 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
namespace my{
#define done(...) return pp(__VA_ARGS__)
#define LL(...) ll __VA_ARGS__;lin(__VA_ARGS__)
#define FO(n) for(ll ij=n;ij--;)
#define FOR(i,...) for(auto[i,i##stop,i##step]=range(0,__VA_ARGS__);i<i##stop;i+=i##step)
#define fo(i,...) FO##__VA_OPT__(R)(i __VA_OPT__(,__VA_ARGS__))
#define single_testcase void solve();}int main(){my::io();my::solve();}namespace my{
void io(){cin.tie(nullptr)->sync_with_stdio(0);cout<<fixed<<setprecision(15);}
using ll=long long;
constexpr auto range(bool s,auto...a){array<ll,3>r{0,0,1};ll I=0;((r[I++]=a),...);if(!s&&I==1)swap(r[0],r[1]);r[0]-=s;return r;}
constexpr char newline=10;
constexpr char space=32;
constexpr auto zz(auto x){return x<0?-x:x;}

void lin(auto&...a){(cin>>...>>a);}
template<char c=space>void pp(const auto&...a){ll n=sizeof...(a);((cout<<a<<string(--n>0,c)),...);cout<<newline;}

ll bsl(const auto&f,ll o,ll x){while(zz(o-x)>1)(f((o+x)/2)?o:x)=(o+x)/2;return o;}

single_testcase
void solve(){
  LL(R,K);++R;
  if((R-1)*R==K*2)done(0);
  if(K==0)done(1);

  fo(l,1,R){
    ll r=bsl([&](ll r){
      return(r-l)*(l+r-1)<=K*2;
    },l,R+2);
    if(r==R+1)continue;
    if((l==1||r==R)&&(r-l)*(l+r-1)==K*2)done(1);
  }

  fo(l,1,R){
    ll r=bsl([&](ll r){
      return(r-l)*(l+r-1)<=(R-1)*R-K*2;
    },l,R+2);
    if(r==R+1)continue;
    if((r-l)*(l+r-1)==(R-1)*R-K*2)done(1);
  }

  pp(2);
}}
0