結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | 👑 Nachia |
提出日時 | 2020-10-09 22:37:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 1,433 ms |
コンパイル使用メモリ | 174,100 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 13:00:48 |
合計ジャッジ時間 | 5,842 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 95 ms
5,376 KB |
testcase_06 | AC | 117 ms
5,376 KB |
testcase_07 | AC | 103 ms
5,376 KB |
testcase_08 | AC | 455 ms
5,376 KB |
testcase_09 | AC | 446 ms
5,376 KB |
testcase_10 | AC | 478 ms
5,376 KB |
testcase_11 | AC | 457 ms
5,376 KB |
testcase_12 | AC | 461 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 738 ms
5,376 KB |
testcase_15 | AC | 444 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'ULL loop(ULL)': main.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type] 20 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using LL = long long; using ULL = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) #include<unordered_map> ULL loop(ULL N) { N = 2 * N - 1; unordered_map<ULL, ULL> X(40000); ULL p = 1; rep(i, 40000) { X[p] = i; p = p * 2 % N; if (p == 1) return i + 1; } p = 1; ULL q = 1; rep(i, 40000) q = q * (N / 2 + 1) % N; rep(i, 100000) { p = p * q % N; if (X.count(p)) return (i + 1) * 40000 + X[p]; } } int main() { int T; cin >> T; while (T--) { ULL N; cin >> N; cout << loop(N) << endl; } return 0; }