結果

問題 No.469 区間加算と一致検索の問題
ユーザー maspymaspy
提出日時 2020-03-24 21:44:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,431 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,840 KB
最終ジャッジ日時 2024-06-10 09:21:38
合計ジャッジ時間 33,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 51 ms
11,520 KB
testcase_04 AC 65 ms
11,648 KB
testcase_05 AC 64 ms
11,904 KB
testcase_06 AC 68 ms
12,160 KB
testcase_07 AC 75 ms
12,160 KB
testcase_08 AC 74 ms
12,288 KB
testcase_09 AC 49 ms
11,264 KB
testcase_10 AC 53 ms
11,520 KB
testcase_11 AC 44 ms
11,136 KB
testcase_12 AC 77 ms
12,288 KB
testcase_13 AC 58 ms
11,520 KB
testcase_14 AC 38 ms
11,008 KB
testcase_15 AC 40 ms
11,264 KB
testcase_16 AC 66 ms
12,160 KB
testcase_17 AC 68 ms
12,160 KB
testcase_18 AC 74 ms
12,032 KB
testcase_19 AC 37 ms
10,880 KB
testcase_20 AC 72 ms
12,288 KB
testcase_21 AC 41 ms
11,136 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 517 ms
20,888 KB
testcase_24 AC 519 ms
20,824 KB
testcase_25 AC 519 ms
20,876 KB
testcase_26 AC 511 ms
20,880 KB
testcase_27 AC 516 ms
20,752 KB
testcase_28 AC 513 ms
20,872 KB
testcase_29 AC 513 ms
20,756 KB
testcase_30 AC 516 ms
20,884 KB
testcase_31 AC 515 ms
21,004 KB
testcase_32 AC 514 ms
20,752 KB
testcase_33 AC 1,410 ms
31,724 KB
testcase_34 AC 1,403 ms
31,668 KB
testcase_35 AC 1,393 ms
31,668 KB
testcase_36 AC 1,403 ms
31,840 KB
testcase_37 AC 1,400 ms
31,616 KB
testcase_38 AC 1,390 ms
25,352 KB
testcase_39 AC 1,402 ms
25,372 KB
testcase_40 AC 1,391 ms
25,364 KB
testcase_41 AC 1,397 ms
25,368 KB
testcase_42 AC 1,389 ms
25,356 KB
testcase_43 AC 1,431 ms
25,364 KB
testcase_44 AC 1,386 ms
25,364 KB
testcase_45 AC 1,397 ms
25,220 KB
testcase_46 AC 1,381 ms
25,228 KB
testcase_47 AC 1,393 ms
25,364 KB
testcase_48 AC 30 ms
10,880 KB
testcase_49 AC 30 ms
10,752 KB
testcase_50 AC 1,396 ms
25,360 KB
testcase_51 AC 1,382 ms
25,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import defaultdict


N, Q = map(int, readline().split())

MOD = 10 ** 16 + 61
B = 12345
H = [0] * Q

first_time = dict()
x = 0
first_time[x] = 0
for i, query in enumerate(readlines(), 1):
    if query.startswith(b'?'):
        print(first_time[x])
    else:
        L, R, K = map(int, query[2:].split())
        x += K * (pow(B, R, MOD) - pow(B, L, MOD))
        x %= MOD
        if x not in first_time:
            first_time[x] = i
0