結果
問題 | No.2592 おでぶなおばけさん 2 |
ユーザー | shojin_pro |
提出日時 | 2023-12-20 00:19:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,086 bytes |
コンパイル時間 | 2,504 ms |
コンパイル使用メモリ | 79,396 KB |
実行使用メモリ | 65,216 KB |
最終ジャッジ日時 | 2024-09-27 09:14:11 |
合計ジャッジ時間 | 47,754 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,164 KB |
testcase_01 | AC | 233 ms
56,508 KB |
testcase_02 | AC | 326 ms
56,324 KB |
testcase_03 | AC | 239 ms
55,420 KB |
testcase_04 | AC | 244 ms
55,724 KB |
testcase_05 | AC | 365 ms
58,204 KB |
testcase_06 | AC | 342 ms
56,648 KB |
testcase_07 | AC | 374 ms
56,768 KB |
testcase_08 | AC | 340 ms
57,088 KB |
testcase_09 | AC | 247 ms
56,080 KB |
testcase_10 | AC | 264 ms
55,396 KB |
testcase_11 | AC | 333 ms
57,028 KB |
testcase_12 | AC | 202 ms
55,304 KB |
testcase_13 | AC | 489 ms
59,516 KB |
testcase_14 | AC | 494 ms
61,476 KB |
testcase_15 | AC | 445 ms
57,760 KB |
testcase_16 | AC | 512 ms
61,404 KB |
testcase_17 | AC | 507 ms
60,876 KB |
testcase_18 | AC | 444 ms
57,864 KB |
testcase_19 | AC | 439 ms
58,064 KB |
testcase_20 | AC | 422 ms
58,856 KB |
testcase_21 | AC | 411 ms
58,832 KB |
testcase_22 | AC | 398 ms
56,896 KB |
testcase_23 | AC | 500 ms
60,976 KB |
testcase_24 | AC | 483 ms
57,688 KB |
testcase_25 | AC | 415 ms
59,344 KB |
testcase_26 | AC | 427 ms
59,188 KB |
testcase_27 | AC | 523 ms
63,948 KB |
testcase_28 | AC | 541 ms
64,044 KB |
testcase_29 | AC | 584 ms
65,216 KB |
testcase_30 | AC | 537 ms
63,984 KB |
testcase_31 | AC | 582 ms
64,972 KB |
testcase_32 | AC | 559 ms
64,092 KB |
testcase_33 | AC | 506 ms
63,804 KB |
testcase_34 | WA | - |
testcase_35 | AC | 541 ms
61,932 KB |
testcase_36 | AC | 518 ms
61,868 KB |
testcase_37 | AC | 568 ms
61,800 KB |
testcase_38 | AC | 530 ms
61,760 KB |
testcase_39 | AC | 571 ms
62,908 KB |
testcase_40 | AC | 527 ms
61,940 KB |
testcase_41 | AC | 539 ms
63,068 KB |
testcase_42 | AC | 522 ms
62,028 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 550 ms
64,084 KB |
testcase_59 | AC | 541 ms
65,196 KB |
testcase_60 | AC | 527 ms
63,836 KB |
testcase_61 | AC | 554 ms
64,964 KB |
testcase_62 | AC | 531 ms
63,980 KB |
testcase_63 | AC | 550 ms
62,032 KB |
testcase_64 | AC | 557 ms
63,712 KB |
testcase_65 | AC | 522 ms
59,776 KB |
testcase_66 | AC | 512 ms
60,852 KB |
testcase_67 | AC | 523 ms
60,052 KB |
testcase_68 | AC | 523 ms
61,140 KB |
testcase_69 | AC | 521 ms
61,068 KB |
testcase_70 | AC | 534 ms
61,032 KB |
testcase_71 | AC | 530 ms
59,644 KB |
testcase_72 | AC | 523 ms
59,968 KB |
testcase_73 | AC | 527 ms
59,780 KB |
testcase_74 | WA | - |
testcase_75 | AC | 536 ms
63,068 KB |
testcase_76 | AC | 571 ms
63,032 KB |
testcase_77 | AC | 521 ms
61,740 KB |
testcase_78 | AC | 552 ms
62,860 KB |
testcase_79 | AC | 531 ms
62,072 KB |
testcase_80 | AC | 549 ms
63,132 KB |
testcase_81 | AC | 532 ms
62,984 KB |
testcase_82 | AC | 578 ms
63,024 KB |
testcase_83 | AC | 519 ms
61,152 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static FastScanner sc = new FastScanner(System.in); static PrintWriter pw = new PrintWriter(System.out); static StringBuilder sb = new StringBuilder(); static long mod = (long)1e9+7; static long mod2 = 998244353; public static void main(String[] args) throws Exception { solve(); pw.flush(); } public static void solve(){ int N = sc.nextInt(); int Q = sc.nextInt(); long K = sc.nextLong(); if(K == mod){ mod = mod2; } K %= mod; long[] sum = new long[N+1]; long now = 1; for(int i = 0; i < N; i++){ long v = sc.nextLong(); if(v < 0){ long p = (Math.abs(v)+mod-1)/mod; v += p*mod; v %= mod; }else{ v %= mod; } sum[i+1] += (sum[i]+(v*now))%mod; now *= K; now %= mod; } for(int i = 0; i < Q; i++){ int l = sc.nextInt()-1; int r = sc.nextInt(); if(sum[r] - sum[l] != 0){ pw.println("Yes"); }else{ pw.println("No"); } } } static class GeekInteger { public static void save_sort(int[] array) { shuffle(array); Arrays.sort(array); } public static int[] shuffle(int[] array) { int n = array.length; Random random = new Random(); for (int i = 0, j; i < n; i++) { j = i + random.nextInt(n - i); int randomElement = array[j]; array[j] = array[i]; array[i] = randomElement; } return array; } public static void save_sort(long[] array) { shuffle(array); Arrays.sort(array); } public static long[] shuffle(long[] array) { int n = array.length; Random random = new Random(); for (int i = 0, j; i < n; i++) { j = i + random.nextInt(n - i); long randomElement = array[j]; array[j] = array[i]; array[i] = randomElement; } return array; } } } class FastScanner { private BufferedReader reader = null; private StringTokenizer tokenizer = null; public FastScanner(InputStream in) { reader = new BufferedReader(new InputStreamReader(in)); tokenizer = null; } public FastScanner(FileReader in) { reader = new BufferedReader(in); tokenizer = null; } public String next() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public String nextLine() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { return reader.readLine(); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken("\n"); } public long nextLong() { return Long.parseLong(next()); } public int nextInt() { return Integer.parseInt(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String[] nextArray(int n) { String[] a = new String[n]; for (int i = 0; i < n; i++) a[i] = next(); return a; } public int[] nextIntArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public long[] nextLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } }