結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | fastmath |
提出日時 | 2020-10-09 23:08:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,260 bytes |
コンパイル時間 | 2,210 ms |
コンパイル使用メモリ | 208,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 14:03:00 |
合計ジャッジ時間 | 3,382 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 40 ms
5,376 KB |
testcase_09 | AC | 40 ms
5,376 KB |
testcase_10 | AC | 41 ms
5,376 KB |
testcase_11 | AC | 40 ms
5,376 KB |
testcase_12 | AC | 41 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 90 ms
5,376 KB |
testcase_15 | AC | 39 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'long long int fast_solve()': main.cpp:57:1: warning: no return statement in function returning non-void [-Wreturn-type] 57 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define ii pair <int, int> #define app push_back #define all(a) a.begin(), a.end() #define bp __builtin_popcountll #define ll long long #define mp make_pair #define f first #define s second #define Time (double)clock()/CLOCKS_PER_SEC #define debug(x) std::cout << #x << ": " << x << '\n'; int solve(int n) { vector <int> a(2 * n); for (int i = 0; i < 2 * n; ++i) a[i] = i; auto was = a; auto f = [&] (vector <int> a) { vector <int> ans; for (int i = 0; i < n; ++i) { ans.app(a[i]); ans.app(a[i + n]); } return ans; }; int ans = 0; while (1) { a = f(a); ans++; if (a == was) { return ans; } } assert(0); } int phi (int n) { int result = n; for (int i=2; i*i<=n; ++i) if (n % i == 0) { while (n % i == 0) n /= i; result -= result / i; } if (n > 1) result -= result / n; return result; } int fast_solve() { } int fp(int a, int p, int mod) { int ans = 1, cur = a; for (int i = 0; (1ll << i) <= p; ++i) { if ((p >> i) & 1) { ans = (ans * cur) % mod; } cur = (cur * cur) % mod; } return ans; } signed main() { #ifdef HOME freopen("input.txt", "r", stdin); #else #define endl '\n' ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cout.setf(ios::fixed); cout.precision(20); #endif int t; cin >> t; while (t--) { int n; cin >> n; int mod = 2 * n - 1; int ph = phi(mod); vector <int> a; for (int d = 1; d * d <= ph; ++d) { if (ph % d == 0) { a.app(d); a.app(ph/d); } } sort(all(a)); for (auto e : a) { if (fp(2, e, mod) == 1) { cout << e << endl; break; } } } exit(0); /* for (int n = 1; n <= 100; ++n) { //cout << n << ' ' << solve(n) << endl; cout << solve(n) << ' '; } cout << endl; */ }