結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー mmn15277198mmn15277198
提出日時 2022-07-25 20:45:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 174,984 KB
実行使用メモリ 36,564 KB
最終ジャッジ日時 2024-07-07 23:17:04
合計ジャッジ時間 6,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 26 ms
7,552 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 27 ms
7,444 KB
testcase_06 AC 336 ms
36,432 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 13 ms
5,632 KB
testcase_09 AC 13 ms
5,504 KB
testcase_10 AC 21 ms
6,784 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 325 ms
36,432 KB
testcase_13 AC 368 ms
36,436 KB
testcase_14 AC 149 ms
19,796 KB
testcase_15 AC 27 ms
7,552 KB
testcase_16 AC 21 ms
6,656 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 367 ms
36,564 KB
testcase_19 AC 371 ms
36,436 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 13 ms
5,504 KB
testcase_22 AC 27 ms
7,444 KB
testcase_23 AC 14 ms
5,632 KB
testcase_24 WA -
testcase_25 AC 30 ms
7,552 KB
testcase_26 AC 152 ms
19,796 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 27 ms
7,552 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  long long a, n;
  cin >> a >> n;
  long long m = 1e7;
  cout << m << endl;
  map<long long, int> mp;
  vector<int> cnt;
  long long x = 1;
  for (int i = 1; i <= m; i++) {
    x = x % m * a % m;
    if (mp[x] != 0) {
      break;
    } else {
      mp[x]++;
      cnt.push_back(x);
    }
  }
  cout << cnt[n % ((long long) cnt.size()) - 1] << endl;
  return 0;
}
0