結果
問題 | No.1232 2^x = x |
ユーザー | ninoinui |
提出日時 | 2020-09-18 22:37:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 1,936 ms |
コンパイル使用メモリ | 202,328 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 10:04:19 |
合計ジャッジ時間 | 2,464 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T, typename U> void cmax(T &a, U b) { if (a < b) a = b; } template<typename T, typename U> void cmin(T &a, U b) { if (a > b) a = b; } signed main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); int N; cin >> N; vector<int> P(N); for (int i = 0; i < N; i++) cin >> P.at(i); for (auto p : P) { for (int i = 1; i <= 62; i++) { if ((1L << i) % p == i % p) { cout << i << "\n"; goto NEXT; } } cout << -1 << "\n"; NEXT:; } }