結果

問題 No.469 区間加算と一致検索の問題
ユーザー 37zigen37zigen
提出日時 2016-12-20 12:27:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 3,748 ms
コンパイル使用メモリ 78,552 KB
実行使用メモリ 143,912 KB
最終ジャッジ日時 2024-12-14 11:15:36
合計ジャッジ時間 90,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
143,912 KB
testcase_01 AC 134 ms
61,052 KB
testcase_02 AC 146 ms
143,732 KB
testcase_03 AC 322 ms
59,156 KB
testcase_04 AC 341 ms
59,156 KB
testcase_05 AC 356 ms
59,448 KB
testcase_06 AC 379 ms
59,528 KB
testcase_07 AC 387 ms
59,432 KB
testcase_08 AC 417 ms
59,380 KB
testcase_09 AC 295 ms
58,716 KB
testcase_10 WA -
testcase_11 AC 273 ms
58,552 KB
testcase_12 AC 420 ms
59,644 KB
testcase_13 AC 348 ms
59,336 KB
testcase_14 AC 241 ms
58,244 KB
testcase_15 AC 280 ms
58,520 KB
testcase_16 AC 399 ms
59,264 KB
testcase_17 AC 375 ms
59,572 KB
testcase_18 AC 386 ms
59,228 KB
testcase_19 AC 225 ms
57,848 KB
testcase_20 AC 430 ms
59,700 KB
testcase_21 AC 254 ms
58,344 KB
testcase_22 AC 188 ms
55,156 KB
testcase_23 AC 1,165 ms
74,028 KB
testcase_24 AC 894 ms
65,704 KB
testcase_25 AC 1,136 ms
74,880 KB
testcase_26 AC 1,185 ms
74,300 KB
testcase_27 AC 1,127 ms
73,316 KB
testcase_28 AC 1,119 ms
73,704 KB
testcase_29 AC 1,078 ms
71,656 KB
testcase_30 AC 871 ms
65,676 KB
testcase_31 AC 859 ms
65,656 KB
testcase_32 AC 1,092 ms
72,964 KB
testcase_33 AC 4,725 ms
100,168 KB
testcase_34 AC 2,802 ms
99,184 KB
testcase_35 AC 3,910 ms
100,272 KB
testcase_36 AC 2,346 ms
98,128 KB
testcase_37 AC 1,349 ms
96,812 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 TLE -
testcase_42 WA -
testcase_43 WA -
testcase_44 TLE -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 169 ms
54,312 KB
testcase_49 AC 132 ms
54,176 KB
testcase_50 TLE -
testcase_51 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.HashMap;
import java.util.Scanner;

public class Q469 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int q = sc.nextInt();
		long p1 = 1_000_000 + 7;
		long m1 = 1_000_000 + 9;
		long[] pow = new long[n];
		pow[0] = 1;
		for (int i = 1; i < n; ++i) {
			pow[i] = pow[i - 1] * p1 % m1;
		}
		long[] accum = new long[n];
		accum[0] = pow[0];
		for (int i = 1; i < n; ++i) {
			accum[i] = accum[i - 1] + pow[i];
		}

		HashMap<Long, Integer> map = new HashMap<>();
		map.put(0L, 0);
		long h1 = 0;
		for (int query = 0; query < q; ++query) {
			String s = sc.next();
			if (s.equals("!")) {
				int l = sc.nextInt();
				int r = sc.nextInt();
				int k = sc.nextInt();
				h1 += (accum[r - 1] - (l > 0 ? accum[l - 1] : 0)) * k;
				while (h1 < 0)
					h1 += m1;
				if (!map.containsKey(h1)) {
					map.put(h1, query + 1);
				}
			} else {
				System.out.println(map.get(h1));
			}
		}
	}
}
0