結果

問題 No.469 区間加算と一致検索の問題
ユーザー tkc60kmphtkc60kmph
提出日時 2016-12-21 16:45:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 417 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 819,712 KB
最終ジャッジ日時 2024-12-14 12:27:27
合計ジャッジ時間 141,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 180 ms
21,092 KB
testcase_03 AC 72 ms
14,080 KB
testcase_04 AC 127 ms
23,424 KB
testcase_05 AC 111 ms
19,452 KB
testcase_06 AC 126 ms
21,376 KB
testcase_07 AC 154 ms
25,600 KB
testcase_08 AC 127 ms
19,968 KB
testcase_09 AC 84 ms
16,768 KB
testcase_10 AC 84 ms
12,416 KB
testcase_11 AC 68 ms
14,848 KB
testcase_12 AC 122 ms
19,056 KB
testcase_13 AC 96 ms
17,536 KB
testcase_14 AC 49 ms
12,416 KB
testcase_15 AC 52 ms
11,904 KB
testcase_16 AC 104 ms
16,512 KB
testcase_17 AC 131 ms
21,760 KB
testcase_18 AC 150 ms
24,448 KB
testcase_19 AC 48 ms
12,288 KB
testcase_20 AC 115 ms
18,304 KB
testcase_21 AC 60 ms
13,952 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
testcase_35 TLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 TLE -
testcase_42 MLE -
testcase_43 TLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 TLE -
testcase_47 MLE -
testcase_48 AC 34 ms
10,752 KB
testcase_49 AC 33 ms
10,752 KB
testcase_50 MLE -
testcase_51 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
x = [0]*n
q = [0]*m
for i in range(m):
	q[i] = input().split()
	if q[i][0] == "!":
		for j in [1,2,3]:
			q[i][j] = int(q[i][j])
ans = {tuple(x[:]):0}
chk = {tuple(x[:])}
for i in range(m):
	if q[i][0] == "!":
		for j in range(q[i][2]-q[i][1]):
			x[q[i][1]+j] += q[i][3]
		l = len(chk)
		chk.add(tuple(x[:]))
		if l < len(chk):
			ans[tuple(x[:])] = i+1
	else:
		print(ans[tuple(x)])
0