結果

問題 No.2592 おでぶなおばけさん 2
ユーザー ochiaigawaochiaigawa
提出日時 2023-12-20 12:09:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 210,112 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-09-27 09:46:10
合計ジャッジ時間 15,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 39 ms
8,576 KB
testcase_02 AC 39 ms
7,168 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 90 ms
15,360 KB
testcase_06 AC 41 ms
7,552 KB
testcase_07 AC 44 ms
7,424 KB
testcase_08 AC 58 ms
9,728 KB
testcase_09 AC 21 ms
6,944 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 56 ms
9,984 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 87 ms
10,880 KB
testcase_14 AC 85 ms
11,008 KB
testcase_15 AC 62 ms
8,320 KB
testcase_16 AC 86 ms
11,008 KB
testcase_17 AC 98 ms
12,544 KB
testcase_18 AC 63 ms
8,192 KB
testcase_19 AC 49 ms
6,940 KB
testcase_20 AC 63 ms
8,448 KB
testcase_21 AC 46 ms
6,944 KB
testcase_22 AC 82 ms
11,520 KB
testcase_23 WA -
testcase_24 AC 75 ms
9,600 KB
testcase_25 AC 41 ms
6,944 KB
testcase_26 AC 43 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 128 ms
15,616 KB
testcase_29 AC 127 ms
15,616 KB
testcase_30 WA -
testcase_31 AC 127 ms
15,616 KB
testcase_32 AC 128 ms
15,616 KB
testcase_33 AC 127 ms
15,744 KB
testcase_34 AC 126 ms
15,616 KB
testcase_35 AC 124 ms
15,744 KB
testcase_36 AC 125 ms
15,744 KB
testcase_37 AC 127 ms
15,744 KB
testcase_38 AC 123 ms
15,744 KB
testcase_39 AC 126 ms
15,616 KB
testcase_40 AC 125 ms
15,616 KB
testcase_41 AC 125 ms
15,616 KB
testcase_42 AC 128 ms
15,616 KB
testcase_43 AC 124 ms
15,616 KB
testcase_44 AC 124 ms
15,616 KB
testcase_45 AC 126 ms
15,616 KB
testcase_46 AC 132 ms
15,616 KB
testcase_47 AC 126 ms
15,616 KB
testcase_48 AC 124 ms
15,616 KB
testcase_49 AC 121 ms
15,744 KB
testcase_50 AC 120 ms
15,616 KB
testcase_51 AC 116 ms
15,744 KB
testcase_52 AC 123 ms
15,744 KB
testcase_53 AC 124 ms
15,616 KB
testcase_54 AC 124 ms
15,616 KB
testcase_55 AC 129 ms
15,616 KB
testcase_56 AC 125 ms
15,744 KB
testcase_57 AC 88 ms
15,744 KB
testcase_58 AC 132 ms
15,744 KB
testcase_59 AC 128 ms
15,616 KB
testcase_60 AC 126 ms
15,616 KB
testcase_61 AC 132 ms
15,616 KB
testcase_62 AC 134 ms
15,616 KB
testcase_63 AC 128 ms
15,616 KB
testcase_64 AC 128 ms
15,616 KB
testcase_65 AC 125 ms
15,616 KB
testcase_66 AC 124 ms
15,616 KB
testcase_67 AC 124 ms
15,616 KB
testcase_68 AC 126 ms
15,616 KB
testcase_69 AC 125 ms
15,744 KB
testcase_70 AC 121 ms
15,616 KB
testcase_71 AC 120 ms
15,616 KB
testcase_72 AC 121 ms
15,616 KB
testcase_73 AC 123 ms
15,616 KB
testcase_74 AC 2 ms
6,940 KB
testcase_75 AC 124 ms
15,744 KB
testcase_76 AC 127 ms
15,616 KB
testcase_77 AC 126 ms
15,616 KB
testcase_78 AC 126 ms
15,744 KB
testcase_79 AC 124 ms
15,616 KB
testcase_80 AC 128 ms
15,616 KB
testcase_81 AC 122 ms
15,616 KB
testcase_82 AC 126 ms
15,744 KB
testcase_83 AC 130 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
vector<long long> m = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43};
const int sz = m.size();
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  int N, Q;
  long long K;
  cin >> N >> Q >> K;
  vector<long long> A(N);
  for(int i = 0; i < N; i++) {
    cin >> A[i];
  }
  vector<vector<long long>> C(sz, vector<long long>(N + 1));
  vector<long long> p(sz, 1);
  vector<long long> k(sz);
  for(int i = 0; i < sz; i++) {
    k[i] = K % m[i];
  }
  for(int i = 0; i < N; i++) {
    for(int j = 0; j < sz; j++) {
      C[j][i + 1] = (C[j][i] + A[i] % m[j] * p[j] % m[j] + m[j]) % m[j];
      p[j] = p[j] * k[j] % m[j];
    }
  }
  while(Q--) {
    int L, R;
    cin >> L >> R;
    --L;
    bool fn = false;
    for(int i = 0; i < sz; i++) {
      if(C[i][R] - C[i][L] != 0) {
        fn = true;
      }
    }
    cout << (fn ? "Yes\n" : "No\n");
  }
  return 0;
}
0