結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー mmn15277198mmn15277198
提出日時 2022-07-25 20:46:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 1,461 ms
コンパイル使用メモリ 177,160 KB
実行使用メモリ 38,500 KB
最終ジャッジ日時 2024-07-07 23:18:39
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 27 ms
7,760 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 28 ms
7,640 KB
testcase_06 AC 362 ms
38,408 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 21 ms
6,940 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 351 ms
38,440 KB
testcase_13 AC 398 ms
38,500 KB
testcase_14 AC 145 ms
20,816 KB
testcase_15 AC 28 ms
7,632 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 396 ms
38,344 KB
testcase_19 AC 386 ms
38,460 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 14 ms
6,940 KB
testcase_22 AC 29 ms
7,636 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 28 ms
7,636 KB
testcase_26 AC 152 ms
20,816 KB
testcase_27 AC 6 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 11 ms
6,940 KB
testcase_31 AC 28 ms
7,760 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<long long> 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