結果

問題 No.1140 EXPotentiaLLL!
ユーザー Moss_LocalMoss_Local
提出日時 2020-07-31 22:21:12
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,376 ms / 2,000 ms
コード長 2,875 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 208,340 KB
実行使用メモリ 22,580 KB
最終ジャッジ日時 2023-09-20 23:56:23
合計ジャッジ時間 14,657 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,068 ms
22,168 KB
testcase_01 AC 1,074 ms
22,204 KB
testcase_02 AC 1,074 ms
22,344 KB
testcase_03 AC 1,113 ms
22,344 KB
testcase_04 AC 870 ms
22,580 KB
testcase_05 AC 1,266 ms
22,188 KB
testcase_06 AC 1,198 ms
22,104 KB
testcase_07 AC 1,376 ms
22,504 KB
testcase_08 AC 157 ms
22,276 KB
testcase_09 AC 157 ms
22,068 KB
testcase_10 AC 157 ms
22,136 KB
testcase_11 AC 158 ms
22,028 KB
testcase_12 AC 156 ms
22,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int ll
#define ll long long

#define I32_MAX 2147483647
#define I64_MAX 9223372036854775807LL
#define I64_MAX2 1223372036854775807LL
#define INF I64_MAX2
#define MOD 1000000007
// #define MOD 998244353 
#define MEM_SIZE 100010
#define DEBUG_OUT true
#define ALL(x) (x).begin(), (x).end()

template<typename T> void DEBUG(T e){if(DEBUG_OUT == false)return; std::cout << e <<" ";}
template<typename T> void DEBUG(const std::vector<T>& v){if(DEBUG_OUT == false)return;for(const auto& e : v){std::cout<< e << " "; } std::cout << std::endl;}
template<typename T> void DEBUG(const std::vector<std::vector<T> >& vv){if(DEBUG_OUT == false)return;for(const auto& v : vv){ DEBUG(v); } }
template<class T,class... Ts> void DEBUG(T d, Ts... e){if(DEBUG_OUT == false)return;DEBUG(d);DEBUG(e...);}
template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; abort();}}
template< typename T1, typename T2 > inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
template< typename T1, typename T2 > inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

bool IsPrime(int num)
{
    if (num < 2) return false;
    else if (num == 2) return true;
    else if (num % 2 == 0) return false; // 偶数はあらかじめ除く

    double sqrtNum = sqrt(num);
    for (int i = 3; i <= sqrtNum; i += 2)
    {
        if (num % i == 0)
        {
            // 素数ではない
            return false;
        }
    }

    // 素数である
    return true;
}

std::vector<int> Eratosthenes( const int N )
{
    std::vector<bool> is_prime( N + 1 );
    for( int i = 0; i <= N; i++ )
    {
        is_prime[ i ] = true;
    }
    std::vector<int> P;
    for( int i = 2; i <= N; i++ )
    {
        if( is_prime[ i ] )
        {
            for( int j = 2 * i; j <= N; j += i )
            {
                is_prime[ j ] = false;
            }
            P.emplace_back( i );
        }
    }
    return P;
}



void solve(void)
{  
  int Q;
  cin>>Q;
  auto E = Eratosthenes((int)(5*1e6 + 10));
  set<int> SET;
  for (int i = 0; i < E.size(); i++)
  {
    SET.insert(E[i]);
  }
  // DEBUG(E);
  
  for (int q = 0; q < Q; q++)
  {
    int A,P;
    cin>>A;
    cin>>P;
    int flg = 0;
    auto itr = SET.find(P);
    flg = (itr !=SET.end());
    if(P == 1)flg = 0;
    if(flg)
    {
      if(A%P == 0)
      {
        cout<<0<<endl;
        continue;
      }
      if(P%2 == 1)
      {
        cout<<1<<endl;
      }
      else
      {
        cout<<(int)(A%2 == 1)<<endl;
      }
      
    }
    else
    {
      cout<<-1<<endl;
    }
    // cout<<std::flush;
    // DEBUG(A,P);
  }
  
  return;
}

int32_t main(int32_t argc, const char *argv[])
{
  std::ios::sync_with_stdio(false);
  std::cin.tie(0);

  std::cout << std::fixed;
  std::cout << std::setprecision(11);
  solve();

  return 0;
}
0