結果

問題 No.469 区間加算と一致検索の問題
ユーザー H3PO4H3PO4
提出日時 2021-07-17 08:53:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,904 ms / 5,000 ms
コード長 407 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-07-06 20:18:58
合計ジャッジ時間 42,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,136 KB
testcase_01 AC 30 ms
11,136 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 64 ms
11,776 KB
testcase_04 AC 79 ms
11,776 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 94 ms
12,160 KB
testcase_07 AC 102 ms
12,032 KB
testcase_08 AC 101 ms
12,032 KB
testcase_09 AC 63 ms
11,648 KB
testcase_10 AC 76 ms
11,392 KB
testcase_11 AC 49 ms
11,520 KB
testcase_12 AC 99 ms
12,160 KB
testcase_13 AC 75 ms
11,776 KB
testcase_14 AC 42 ms
11,264 KB
testcase_15 AC 47 ms
11,520 KB
testcase_16 AC 90 ms
12,160 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 101 ms
12,160 KB
testcase_19 AC 41 ms
11,264 KB
testcase_20 AC 97 ms
12,160 KB
testcase_21 AC 47 ms
11,392 KB
testcase_22 AC 32 ms
11,136 KB
testcase_23 AC 657 ms
18,248 KB
testcase_24 AC 681 ms
18,252 KB
testcase_25 AC 690 ms
18,248 KB
testcase_26 AC 683 ms
18,356 KB
testcase_27 AC 682 ms
18,248 KB
testcase_28 AC 689 ms
18,252 KB
testcase_29 AC 676 ms
18,240 KB
testcase_30 AC 668 ms
18,376 KB
testcase_31 AC 668 ms
18,248 KB
testcase_32 AC 678 ms
18,244 KB
testcase_33 AC 1,860 ms
25,508 KB
testcase_34 AC 1,825 ms
25,500 KB
testcase_35 AC 1,808 ms
25,556 KB
testcase_36 AC 1,753 ms
25,512 KB
testcase_37 AC 1,788 ms
25,600 KB
testcase_38 AC 1,769 ms
18,852 KB
testcase_39 AC 1,799 ms
18,724 KB
testcase_40 AC 1,801 ms
18,720 KB
testcase_41 AC 1,805 ms
18,856 KB
testcase_42 AC 1,769 ms
18,848 KB
testcase_43 AC 1,764 ms
18,728 KB
testcase_44 AC 1,904 ms
18,852 KB
testcase_45 AC 1,824 ms
18,848 KB
testcase_46 AC 1,842 ms
18,852 KB
testcase_47 AC 1,770 ms
18,728 KB
testcase_48 AC 31 ms
11,264 KB
testcase_49 AC 30 ms
11,136 KB
testcase_50 AC 1,822 ms
18,856 KB
testcase_51 AC 1,797 ms
18,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

N, Q = map(int, input().split())
MOD = (1 << 61) - 1
BASE = random.randrange(2, MOD)
cur = 0
d = {0: 0}
for i in range(1, Q + 1):
    query = input().split()
    if query[0] == '!':
        L, R, K = map(int, query[1:])
        cur += K * pow(BASE, L, MOD)
        cur -= K * pow(BASE, R, MOD)
        cur %= MOD
        if cur not in d:
            d[cur] = i
    else:
        print(d[cur])
0