結果

問題 No.2592 おでぶなおばけさん 2
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-12-20 00:09:37
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 2,348 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 108,544 KB
実行使用メモリ 11,000 KB
最終ジャッジ日時 2023-12-20 01:11:56
合計ジャッジ時間 17,427 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 20 ms
6,676 KB
testcase_02 AC 48 ms
6,676 KB
testcase_03 AC 21 ms
6,676 KB
testcase_04 AC 29 ms
6,676 KB
testcase_05 AC 54 ms
7,000 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 13 ms
6,676 KB
testcase_13 AC 117 ms
6,876 KB
testcase_14 AC 118 ms
6,956 KB
testcase_15 AC 107 ms
6,676 KB
testcase_16 AC 115 ms
6,876 KB
testcase_17 AC 122 ms
10,484 KB
testcase_18 AC 106 ms
6,676 KB
testcase_19 AC 101 ms
6,676 KB
testcase_20 AC 95 ms
6,676 KB
testcase_21 AC 91 ms
6,676 KB
testcase_22 AC 100 ms
6,676 KB
testcase_23 AC 125 ms
10,572 KB
testcase_24 AC 110 ms
6,676 KB
testcase_25 AC 95 ms
6,676 KB
testcase_26 AC 97 ms
6,676 KB
testcase_27 AC 138 ms
11,000 KB
testcase_28 AC 136 ms
11,000 KB
testcase_29 AC 136 ms
11,000 KB
testcase_30 AC 135 ms
10,996 KB
testcase_31 AC 134 ms
11,000 KB
testcase_32 AC 135 ms
11,000 KB
testcase_33 AC 143 ms
11,000 KB
testcase_34 AC 140 ms
11,000 KB
testcase_35 WA -
testcase_36 AC 135 ms
11,000 KB
testcase_37 AC 133 ms
10,996 KB
testcase_38 AC 134 ms
10,996 KB
testcase_39 AC 139 ms
10,996 KB
testcase_40 AC 139 ms
10,996 KB
testcase_41 AC 137 ms
10,996 KB
testcase_42 AC 134 ms
10,996 KB
testcase_43 AC 137 ms
11,000 KB
testcase_44 AC 138 ms
11,000 KB
testcase_45 AC 136 ms
11,000 KB
testcase_46 AC 137 ms
11,000 KB
testcase_47 AC 122 ms
10,700 KB
testcase_48 AC 120 ms
10,700 KB
testcase_49 AC 120 ms
10,700 KB
testcase_50 AC 124 ms
10,700 KB
testcase_51 AC 123 ms
10,700 KB
testcase_52 AC 135 ms
11,000 KB
testcase_53 AC 134 ms
11,000 KB
testcase_54 AC 134 ms
11,000 KB
testcase_55 AC 133 ms
11,000 KB
testcase_56 AC 132 ms
11,000 KB
testcase_57 AC 29 ms
6,872 KB
testcase_58 AC 133 ms
11,000 KB
testcase_59 AC 134 ms
11,000 KB
testcase_60 AC 132 ms
11,000 KB
testcase_61 AC 132 ms
11,000 KB
testcase_62 AC 132 ms
11,000 KB
testcase_63 AC 132 ms
11,000 KB
testcase_64 AC 133 ms
11,000 KB
testcase_65 AC 136 ms
10,932 KB
testcase_66 WA -
testcase_67 AC 128 ms
10,852 KB
testcase_68 AC 129 ms
10,932 KB
testcase_69 AC 133 ms
10,852 KB
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 132 ms
10,932 KB
testcase_73 AC 132 ms
10,932 KB
testcase_74 AC 135 ms
11,000 KB
testcase_75 AC 137 ms
11,000 KB
testcase_76 AC 137 ms
11,000 KB
testcase_77 AC 135 ms
11,000 KB
testcase_78 AC 134 ms
11,000 KB
testcase_79 AC 133 ms
11,000 KB
testcase_80 AC 133 ms
11,000 KB
testcase_81 AC 139 ms
11,000 KB
testcase_82 AC 139 ms
11,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


// enum MS = [1100000009, 1100000017, 1100000051, 1100000059, 1100000081, 
// 1100000123, 1100000149, 1100000159, 1100000177, 1100000179];
enum MS = [998244353];
enum H = cast(int)(MS.length);

void main() {
  try {
    for (; ; ) {
      const N = readInt;
      const Q = readInt;
      const K = readLong;
      auto A = new long[N];
      foreach (i; 0 .. N) {
        A[i] = readLong;
      }
      auto L = new int[Q];
      auto R = new int[Q];
      foreach (q; 0 .. Q) {
        L[q] = readInt - 1;
        R[q] = readInt;
      }
      
      auto KK = new long[][](H, N + 1);
      auto fss = new long[][](H, N + 1);
      foreach (h; 0 .. H) {
        KK[h][0] = 1;
        foreach (i; 1 .. N + 1) {
          KK[h][i] = KK[h][i - 1] * K;
        }
        foreach_reverse (i; 0 .. N) {
          fss[h][i] = (A[i] + K * fss[h][i + 1]) % MS[h];
        }
      }
      
      foreach (q; 0 .. Q) {
        bool ans;
        foreach (h; 0 .. H) {
          long val = (fss[h][L[q]] - KK[h][R[q] - L[q]] * fss[h][R[q]]) % MS[h];
          ans = ans || val;
        }
        writeln(ans ? "Yes" : "No");
      }
    }
  } catch (EOFException e) {
  }
}
0