結果
問題 | No.613 Solitude by the window |
ユーザー | merom686 |
提出日時 | 2017-12-13 01:02:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 876 bytes |
コンパイル時間 | 675 ms |
コンパイル使用メモリ | 74,092 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-08 05:45:25 |
合計ジャッジ時間 | 3,947 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; int main() { int64_t n, m; cin >> n >> m; int64_t a = min((int64_t)10000, n); int64_t k = 2; for (int i = 0; i < a; i++) { k = k * (k + 4) % m; } if (n == a) { cout << k << endl; quick_exit(0); } int64_t c[1100] = {}; int64_t l = k, p = 0; for (int i = 0;; i++) { if (i % (1 << 20) == 0) { c[i >> 20] = k; } k = k * (k + 4) % m; if (k == l) { p = i + 1; break; } } int h = (n - a) % p; k = c[h >> 20]; h %= 1 << 20; //cout << h <<' '<<p<< endl; for (int i = 0; i < h; i++) { k = k * (k + 4) % m; } cout << k << endl; return 0; }