結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | trineutron |
提出日時 | 2020-10-09 22:50:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 2,287 ms |
コンパイル使用メモリ | 206,956 KB |
実行使用メモリ | 15,900 KB |
最終ジャッジ日時 | 2024-07-20 13:18:04 |
合計ジャッジ時間 | 9,504 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int64_t power(int64_t n, int64_t k, int64_t mod) { if (k == 0) return 1; int64_t res = power(n * n % mod, k / 2, mod); if (k % 2) { res = res * n % mod; } return res; } int solve(int n) { int64_t mod = 2 * n - 1; map<int64_t, int> v; int64_t x = 1; for (int i = 1; i <= 50000; i++) { x = 2 * x % mod; if (x == 1) return i; v[x] = i; } int64_t m = power(x, mod - 2, mod), y = 1; for (int i = 1; i <= 50000; i++) { y = y * m % mod; if (v[y]) { return 50000 * i + v[y]; } } return -1; } int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int n; cin >> n; cout << solve(n) << endl; } }