結果

問題 No.1203 お菓子ゲーム
ユーザー LayCurseLayCurse
提出日時 2020-08-28 23:41:33
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 4,813 bytes
コンパイル時間 2,801 ms
コンパイル使用メモリ 214,740 KB
実行使用メモリ 7,900 KB
最終ジャッジ日時 2023-08-08 21:54:05
合計ジャッジ時間 6,366 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,812 KB
testcase_01 AC 24 ms
7,692 KB
testcase_02 AC 9 ms
7,452 KB
testcase_03 AC 29 ms
7,540 KB
testcase_04 AC 9 ms
7,500 KB
testcase_05 AC 34 ms
7,560 KB
testcase_06 AC 22 ms
7,544 KB
testcase_07 AC 32 ms
7,560 KB
testcase_08 AC 18 ms
7,760 KB
testcase_09 AC 16 ms
7,500 KB
testcase_10 AC 32 ms
7,556 KB
testcase_11 AC 9 ms
7,624 KB
testcase_12 AC 20 ms
7,600 KB
testcase_13 AC 14 ms
7,648 KB
testcase_14 AC 16 ms
7,508 KB
testcase_15 AC 33 ms
7,684 KB
testcase_16 AC 12 ms
7,484 KB
testcase_17 AC 28 ms
7,788 KB
testcase_18 AC 3 ms
7,460 KB
testcase_19 AC 5 ms
7,604 KB
testcase_20 AC 2 ms
7,456 KB
testcase_21 AC 2 ms
7,444 KB
testcase_22 AC 2 ms
7,444 KB
testcase_23 AC 2 ms
7,516 KB
testcase_24 AC 3 ms
7,664 KB
testcase_25 AC 2 ms
7,628 KB
testcase_26 AC 3 ms
7,504 KB
testcase_27 AC 3 ms
7,440 KB
testcase_28 AC 2 ms
7,420 KB
testcase_29 AC 2 ms
7,436 KB
testcase_30 AC 34 ms
7,572 KB
testcase_31 AC 36 ms
7,620 KB
testcase_32 AC 36 ms
7,572 KB
testcase_33 AC 37 ms
7,572 KB
testcase_34 AC 36 ms
7,572 KB
testcase_35 AC 35 ms
7,668 KB
testcase_36 AC 36 ms
7,572 KB
testcase_37 AC 38 ms
7,576 KB
testcase_38 AC 38 ms
7,664 KB
testcase_39 AC 37 ms
7,576 KB
testcase_40 AC 38 ms
7,588 KB
testcase_41 AC 40 ms
7,620 KB
testcase_42 AC 39 ms
7,592 KB
testcase_43 AC 37 ms
7,628 KB
testcase_44 AC 37 ms
7,672 KB
testcase_45 AC 36 ms
7,572 KB
testcase_46 AC 36 ms
7,736 KB
testcase_47 AC 37 ms
7,900 KB
testcase_48 AC 37 ms
7,592 KB
testcase_49 AC 37 ms
7,612 KB
testcase_50 AC 2 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
void *wmem;
char memarr[96000000];
template<class S, class T> inline S min_L(S a,T b){
  return a<=b?a:b;
}
template<class T> inline void walloc1d(T **arr, int x, void **mem = &wmem){
  static int skip[16] = {0, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
  (*mem) = (void*)( ((char*)(*mem)) + skip[((unsigned long long)(*mem)) & 15] );
  (*arr)=(T*)(*mem);
  (*mem)=((*arr)+x);
}
inline int my_getchar_unlocked(){
  static char buf[1048576];
  static int s = 1048576;
  static int e = 1048576;
  if(s == e && e == 1048576){
    e = fread_unlocked(buf, 1, 1048576, stdin);
    s = 0;
  }
  if(s == e){
    return EOF;
  }
  return buf[s++];
}
inline void rd(int &x){
  int k;
  int m=0;
  x=0;
  for(;;){
    k = my_getchar_unlocked();
    if(k=='-'){
      m=1;
      break;
    }
    if('0'<=k&&k<='9'){
      x=k-'0';
      break;
    }
  }
  for(;;){
    k = my_getchar_unlocked();
    if(k<'0'||k>'9'){
      break;
    }
    x=x*10+k-'0';
  }
  if(m){
    x=-x;
  }
}
inline void rd(long long &x){
  int k;
  int m=0;
  x=0;
  for(;;){
    k = my_getchar_unlocked();
    if(k=='-'){
      m=1;
      break;
    }
    if('0'<=k&&k<='9'){
      x=k-'0';
      break;
    }
  }
  for(;;){
    k = my_getchar_unlocked();
    if(k<'0'||k>'9'){
      break;
    }
    x=x*10+k-'0';
  }
  if(m){
    x=-x;
  }
}
inline int rd_int(void){
  int x;
  rd(x);
  return x;
}
struct MY_WRITER{
  char buf[1048576];
  int s;
  int e;
  MY_WRITER(){
    s = 0;
    e = 1048576;
  }
  ~MY_WRITER(){
    if(s){
      fwrite_unlocked(buf, 1, s, stdout);
    }
  }
}
;
MY_WRITER MY_WRITER_VAR;
void my_putchar_unlocked(int a){
  if(MY_WRITER_VAR.s == MY_WRITER_VAR.e){
    fwrite_unlocked(MY_WRITER_VAR.buf, 1, MY_WRITER_VAR.s, stdout);
    MY_WRITER_VAR.s = 0;
  }
  MY_WRITER_VAR.buf[MY_WRITER_VAR.s++] = a;
}
inline void wt_L(char a){
  my_putchar_unlocked(a);
}
inline void wt_L(int x){
  int s=0;
  int m=0;
  char f[10];
  if(x<0){
    m=1;
    x=-x;
  }
  while(x){
    f[s++]=x%10;
    x/=10;
  }
  if(!s){
    f[s++]=0;
  }
  if(m){
    my_putchar_unlocked('-');
  }
  while(s--){
    my_putchar_unlocked(f[s]+'0');
  }
}
inline void wt_L(long long x){
  int s=0;
  int m=0;
  char f[20];
  if(x<0){
    m=1;
    x=-x;
  }
  while(x){
    f[s++]=x%10;
    x/=10;
  }
  if(!s){
    f[s++]=0;
  }
  if(m){
    my_putchar_unlocked('-');
  }
  while(s--){
    my_putchar_unlocked(f[s]+'0');
  }
}
template<class T> int Factor_L(T N, T fac[], int fs[]){
  T i;
  int sz = 0;
  if(N%2==0){
    fac[sz] = 2;
    fs[sz] = 1;
    N /= 2;
    while(N%2==0){
      N /= 2;
      fs[sz]++;
    }
    sz++;
  }
  for(i=3;i*i<=N;i+=2){
    if(N%i==0){
      fac[sz] = i;
      fs[sz] = 1;
      N /= i;
      while(N%i==0){
        N /= i;
        fs[sz]++;
      }
      sz++;
    }
  }
  if(N > 1){
    fac[sz] = N;
    fs[sz] = 1;
    sz++;
  }
  return sz;
}
template<class T> int Divisor_L(T N, T res[], void *mem = wmem){
  int i;
  int j;
  int k;
  int s;
  int sz = 0;
  T *fc;
  int *fs;
  int fsz;
  walloc1d(&fc, 100, &mem);
  walloc1d(&fs, 100, &mem);
  fsz =Factor_L(N, fc, fs);
  res[sz++] = 1;
  for(i=(0);i<(fsz);i++){
    s = sz;
    k = s * fs[i];
    for(j=(0);j<(k);j++){
      res[sz++] = res[j] * fc[i];
    }
  }
  sort(res, res+sz);
  return sz;
}
int ds;
long long d[1000000];
int main(){
  int Lj4PdHRW;
  wmem = memarr;
  int KL2GvlyY = rd_int();
  for(Lj4PdHRW=(0);Lj4PdHRW<(KL2GvlyY);Lj4PdHRW++){
    int i;
    long long X;
    long long Y;
    long long res = 0;
    __int128_t a;
    __int128_t b;
    __int128_t k;
    __int128_t up;
    __int128_t dw;
    rd(X);
    rd(Y);
    if(X==Y-X){
      wt_L(0);
      wt_L('\n');
      continue;
    }
    X =min_L(X, Y-X);
    res += 100000000 / Y;
    ds =Divisor_L(Y, d);
    for(i=(0);i<(ds);i++){
      if(d[i]%2==0){
        continue;
      }
      k = d[i] / 2;
      up = (2*k*k+2*k) * Y;
      dw = d[i] * X;
      if(up % dw){
        continue;
      }
      up /= dw;
      if(up == d[i]){
        continue;
      }
      if(up < 1 || up > 100000000){
        continue;
      }
      res++;
    }
    wt_L(res);
    wt_L('\n');
  }
  return 0;
}
// cLay varsion 20200813-1 [beta]

// --- original code ---
// int ds; ll d[1d6];
// {
//   REP(rd_int()){
//     ll X, Y, res = 0;
//     __int128_t a, b, k, up, dw;
//     rd(X, Y);
// 
//     if(X==Y-X) wt(0), continue;
//     X = min(X, Y-X);
//     res += 1d8 / Y;
// 
//     ds = Divisor(Y, d);
//     rep(i,ds){
//       if(d[i]%2==0) continue;
//       k = d[i] / 2;
//       up = (2*k*k+2*k) * Y;
//       dw = d[i] * X;
//       if(up % dw) continue;
//       up /= dw;
//       if(up == d[i]) continue;
//       if(up < 1 || up > 1d8) continue;
//       res++;
//     }
// 
//     wt(res);
//   }
// }
0