結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | trineutron |
提出日時 | 2020-10-21 22:15:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 202,632 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-07-21 09:10:18 |
合計ジャッジ時間 | 15,982 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 10 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 1,693 ms
5,376 KB |
testcase_09 | AC | 1,734 ms
5,376 KB |
testcase_10 | AC | 1,726 ms
5,376 KB |
testcase_11 | AC | 1,667 ms
5,376 KB |
testcase_12 | AC | 1,740 ms
5,376 KB |
testcase_13 | AC | 131 ms
5,376 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 1,662 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int power(int64_t n, int k, int m) { if (k == 0) return 1; int64_t res = power(n * n % m, k / 2, m); if (k % 2) res = res * n % m; return res; } int totient(int n) { int res = 1; for (int i = 2; i * i <= n; i++) { if (n % i) continue; res *= i - 1; n /= i; while (n % i == 0) { res *= i; n /= i; } } if (n > 1) { res *= n - 1; } return res; } int solve(int n) { if (n == 1) return 1; int t = totient(n), period = t; for (int i = 1; i * i <= t; i++) { if (power(2, i, n) == 1) return i; if (power(2, t / i, n) == 1) period = t / i; } return period; } int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int n; cin >> n; cout << solve(2 * n - 1) << endl; } }