結果

問題 No.469 区間加算と一致検索の問題
ユーザー tkc60kmphtkc60kmph
提出日時 2016-12-21 15:45:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 366 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 758,144 KB
最終ジャッジ日時 2024-05-08 09:29:01
合計ジャッジ時間 9,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 167 ms
16,840 KB
testcase_03 AC 64 ms
13,056 KB
testcase_04 AC 106 ms
18,688 KB
testcase_05 AC 97 ms
16,000 KB
testcase_06 AC 113 ms
17,536 KB
testcase_07 AC 130 ms
20,224 KB
testcase_08 AC 110 ms
16,768 KB
testcase_09 AC 73 ms
14,336 KB
testcase_10 AC 77 ms
12,160 KB
testcase_11 AC 57 ms
13,184 KB
testcase_12 AC 109 ms
16,128 KB
testcase_13 AC 84 ms
14,976 KB
testcase_14 AC 43 ms
11,776 KB
testcase_15 AC 47 ms
11,648 KB
testcase_16 AC 92 ms
14,464 KB
testcase_17 AC 109 ms
17,792 KB
testcase_18 AC 126 ms
19,072 KB
testcase_19 AC 45 ms
11,648 KB
testcase_20 AC 104 ms
15,488 KB
testcase_21 AC 54 ms
12,672 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

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}
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]
		if tuple(x) not in ans:
			ans[tuple(x[:])] = i+1
	else:
		print(ans[tuple(x)])
0