結果

問題 No.2592 おでぶなおばけさん 2
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-12-20 00:08:03
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 2,319 bytes
コンパイル時間 1,326 ms
コンパイル使用メモリ 117,456 KB
実行使用メモリ 27,336 KB
最終ジャッジ日時 2024-09-27 09:11:40
合計ジャッジ時間 31,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 62 ms
11,620 KB
testcase_02 AC 116 ms
9,268 KB
testcase_03 AC 49 ms
6,940 KB
testcase_04 AC 60 ms
6,940 KB
testcase_05 AC 169 ms
21,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 28 ms
6,944 KB
testcase_13 AC 265 ms
14,736 KB
testcase_14 AC 265 ms
14,856 KB
testcase_15 AC 233 ms
11,504 KB
testcase_16 AC 263 ms
14,832 KB
testcase_17 AC 299 ms
24,060 KB
testcase_18 AC 231 ms
11,348 KB
testcase_19 AC 215 ms
10,792 KB
testcase_20 AC 227 ms
12,664 KB
testcase_21 AC 203 ms
8,264 KB
testcase_22 AC 266 ms
16,556 KB
testcase_23 AC 330 ms
23,556 KB
testcase_24 AC 258 ms
14,116 KB
testcase_25 AC 204 ms
7,456 KB
testcase_26 AC 202 ms
7,544 KB
testcase_27 AC 360 ms
21,920 KB
testcase_28 AC 346 ms
21,856 KB
testcase_29 AC 344 ms
21,972 KB
testcase_30 AC 331 ms
23,016 KB
testcase_31 AC 337 ms
21,992 KB
testcase_32 AC 328 ms
22,768 KB
testcase_33 AC 329 ms
22,108 KB
testcase_34 AC 342 ms
21,896 KB
testcase_35 AC 331 ms
22,568 KB
testcase_36 AC 328 ms
21,952 KB
testcase_37 AC 344 ms
21,784 KB
testcase_38 AC 353 ms
22,856 KB
testcase_39 AC 353 ms
21,976 KB
testcase_40 AC 361 ms
22,020 KB
testcase_41 AC 347 ms
21,744 KB
testcase_42 AC 331 ms
22,144 KB
testcase_43 AC 342 ms
21,960 KB
testcase_44 AC 331 ms
22,152 KB
testcase_45 AC 342 ms
22,020 KB
testcase_46 AC 340 ms
21,716 KB
testcase_47 AC 332 ms
27,240 KB
testcase_48 AC 348 ms
27,336 KB
testcase_49 AC 334 ms
27,332 KB
testcase_50 AC 344 ms
27,292 KB
testcase_51 AC 361 ms
27,232 KB
testcase_52 AC 354 ms
22,148 KB
testcase_53 AC 341 ms
22,148 KB
testcase_54 AC 364 ms
21,720 KB
testcase_55 AC 345 ms
22,688 KB
testcase_56 AC 338 ms
22,152 KB
testcase_57 AC 111 ms
20,796 KB
testcase_58 AC 331 ms
22,960 KB
testcase_59 AC 343 ms
21,568 KB
testcase_60 AC 332 ms
21,768 KB
testcase_61 AC 336 ms
22,060 KB
testcase_62 AC 338 ms
21,832 KB
testcase_63 AC 331 ms
22,960 KB
testcase_64 AC 335 ms
22,104 KB
testcase_65 AC 358 ms
21,584 KB
testcase_66 WA -
testcase_67 AC 356 ms
21,072 KB
testcase_68 AC 343 ms
21,376 KB
testcase_69 AC 336 ms
21,848 KB
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 320 ms
22,172 KB
testcase_73 AC 326 ms
22,180 KB
testcase_74 AC 2 ms
6,940 KB
testcase_75 AC 325 ms
21,792 KB
testcase_76 AC 334 ms
22,692 KB
testcase_77 AC 320 ms
22,148 KB
testcase_78 AC 410 ms
22,148 KB
testcase_79 AC 345 ms
23,668 KB
testcase_80 AC 360 ms
22,016 KB
testcase_81 AC 355 ms
23,160 KB
testcase_82 AC 364 ms
22,656 KB
testcase_83 AC 359 ms
22,008 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 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