結果

問題 No.1232 2^x = x
ユーザー Example0911Example0911
提出日時 2020-09-18 22:06:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,745 bytes
コンパイル時間 1,428 ms
コンパイル使用メモリ 167,200 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-04 10:51:03
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"

//#include <atcoder/all>

using namespace std;
//using namespace atcoder;

//#define int long long
#define ll long long

ll INF = (1LL << 60);
int mod = 1000000007;

using P = pair<int, int>;
struct mint {
	ll x; // typedef long long ll;
	mint(ll x = 0) :x((x%mod + mod) % mod) {}
	mint operator-() const { return mint(-x); }
	mint& operator+=(const mint a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const mint a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}

	// for prime mod
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint a) const {
		mint res(*this);
		return res /= a;
	}
};
istream& operator>>(istream& is, mint& a) { return is >> a.x; }
ostream& operator<<(ostream& os, const mint& a) { return os << a.x; }
signed main() {
	int N; cin >> N;
	for (int i = 0; i < N; i++) {
		int p; cin >> p;
		mod = p;
		vector<mint>beki2(60);
		mint now = 1;
		for (int i = 0; i < 60; i++) {
			now -= i;
			beki2[i] = now;
			now += i;
			now *= 2;
			
		}
		bool ok = false;
		for (int i = 0; i < 60; i++) {
			if (beki2[i].x == 0) {
				cout << i << endl; ok = true; break;
			}
		}
		if (ok) {
			
		}
		else {
			cout << -1 << endl;
		}
	}
	return 0;
}
0