結果

問題 No.1232 2^x = x
ユーザー Inazuma_110Inazuma_110
提出日時 2020-09-18 23:09:22
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,030 bytes
コンパイル時間 11,347 ms
コンパイル使用メモリ 452,868 KB
実行使用メモリ 4,332 KB
最終ジャッジ日時 2023-09-04 11:30:46
合計ジャッジ時間 12,364 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,332 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_int.hpp>
#include <atcoder/all>

using boost::multiprecision::cpp_int;
using namespace std;
using namespace atcoder;

#if __has_include("print.hpp")
  #include "print.hpp"
#endif

#define rep(i, n) for(ll i = 0; i < (ll)(n); i++)
#define ALL(x) (x).begin(), (x).end()
#define RALL(x) (x).rbegin(), (x).rend()
#define MOD 1000000007

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

typedef long long ll;
typedef pair<ll, ll> p;


int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  vector<ll> v(n);
  rep(i, n) cin >> v[i];
  for (int i = 0; i < n; ++i) {
    ll val = 1;
    bool flag = false;
    rep(j, 10000){
      val *= 2;
      val %= v[i];
      if(val % v[i] == (j+1)%v[i]){
        cout << j+1 << endl;
        flag = true;
        break;
      }
    }
    if(!flag) cout << -1 << endl;
  }
}
0