結果
問題 | No.1232 2^x = x |
ユーザー | outline |
提出日時 | 2020-12-13 01:09:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,525 bytes |
コンパイル時間 | 1,209 ms |
コンパイル使用メモリ | 134,456 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 22:39:55 |
合計ジャッジ時間 | 1,849 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<int> p(N); for(int i = 0; i < N; ++i) cin >> p[i]; vector<ll> pow2(62, 1); for(int i = 1; i <= 61; ++i) pow2[i] = pow2[i - 1] * 2; for(int i = 0; i < N; ++i){ int ans = -1; for(int j = 1; j <= 61; ++j){ if(j % p[i] == pow2[j] % p[i]){ // cout << "j:" << j << ",pow:" << pow2[j] << ",p:" << p[i] << '\n'; ans = j; break; } } // cout << "ans:"; cout << ans << '\n'; } return 0; }