結果

問題 No.469 区間加算と一致検索の問題
ユーザー nebukuro09nebukuro09
提出日時 2016-12-19 01:46:07
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,468 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 106,880 KB
実行使用メモリ 17,544 KB
最終ジャッジ日時 2024-06-12 05:43:42
合計ジャッジ時間 25,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 375 ms
11,740 KB
testcase_01 AC 379 ms
10,544 KB
testcase_02 AC 373 ms
10,872 KB
testcase_03 AC 385 ms
11,140 KB
testcase_04 AC 381 ms
13,356 KB
testcase_05 AC 378 ms
13,924 KB
testcase_06 AC 387 ms
13,740 KB
testcase_07 AC 375 ms
13,584 KB
testcase_08 AC 381 ms
14,592 KB
testcase_09 AC 379 ms
12,804 KB
testcase_10 AC 378 ms
12,692 KB
testcase_11 AC 379 ms
11,880 KB
testcase_12 WA -
testcase_13 AC 380 ms
11,532 KB
testcase_14 AC 378 ms
11,272 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 375 ms
14,124 KB
testcase_18 AC 374 ms
13,848 KB
testcase_19 AC 372 ms
10,660 KB
testcase_20 WA -
testcase_21 AC 385 ms
10,796 KB
testcase_22 AC 386 ms
11,760 KB
testcase_23 AC 432 ms
17,544 KB
testcase_24 AC 433 ms
16,820 KB
testcase_25 WA -
testcase_26 AC 430 ms
17,024 KB
testcase_27 AC 429 ms
16,892 KB
testcase_28 AC 433 ms
16,896 KB
testcase_29 AC 426 ms
17,024 KB
testcase_30 AC 435 ms
16,768 KB
testcase_31 AC 430 ms
17,024 KB
testcase_32 AC 427 ms
16,836 KB
testcase_33 AC 514 ms
16,852 KB
testcase_34 AC 509 ms
16,768 KB
testcase_35 WA -
testcase_36 AC 515 ms
16,768 KB
testcase_37 AC 502 ms
16,896 KB
testcase_38 AC 503 ms
16,816 KB
testcase_39 AC 501 ms
16,896 KB
testcase_40 AC 508 ms
16,784 KB
testcase_41 WA -
testcase_42 AC 516 ms
16,896 KB
testcase_43 AC 502 ms
16,896 KB
testcase_44 AC 494 ms
16,768 KB
testcase_45 AC 521 ms
16,768 KB
testcase_46 AC 510 ms
16,768 KB
testcase_47 AC 502 ms
16,896 KB
testcase_48 AC 371 ms
9,984 KB
testcase_49 AC 369 ms
9,984 KB
testcase_50 AC 509 ms
16,896 KB
testcase_51 AC 495 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;


long powmod(long a, long x, long m) {
    long ret = 1;
    while (x >= 1) {
        if (x % 2 == 1)
            ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}

void main() {
    immutable long BASE = 10^^9 + 7;
    immutable long MOD = 10^^9 + 9;
    auto powsum = new long[](10^^6+1);
    pragma(inline, true) {
        powsum[0] = 1;
        foreach (i; 0..10^^6)
            powsum[i+1] = (powsum[i] + powmod(BASE, i+1, MOD)) % MOD;
    }

    auto s = readln.split.map!(to!int);
    int N = s[0];
    int Q = s[1];
    long L, R, K;

    int[long] hash_table;
    hash_table[0] = 0;
    long prev = 0;

    foreach (i; 1..Q+1) {
        auto q = readln.split;
        if (q[0] == "!") {
            L = q[1].to!long;
            R = q[2].to!long;
            K = q[3].to!long;
            long plus = ((abs(K) * powmod(BASE, L, MOD)) % MOD * powsum[R-L-1]) % MOD;
            if (K >= 0)
                prev = (prev + plus) % MOD;
            else if (plus > prev)
                prev = (prev - plus) % MOD + MOD;
            else
                prev = (prev - plus) % MOD;
            if (!(prev in hash_table))
                hash_table[prev] = i;
        }
        else {
            hash_table[prev].writeln;
        }
    }
}
0