結果

問題 No.265 数学のテスト
ユーザー TawaraTawara
提出日時 2015-08-08 01:26:16
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 629 bytes
コンパイル時間 1,309 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 82,332 KB
最終ジャッジ日時 2024-07-18 05:32:41
合計ジャッジ時間 6,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 76 ms
79,872 KB
testcase_03 AC 95 ms
79,744 KB
testcase_04 AC 93 ms
79,360 KB
testcase_05 AC 89 ms
79,744 KB
testcase_06 AC 91 ms
79,488 KB
testcase_07 AC 94 ms
79,616 KB
testcase_08 AC 95 ms
80,128 KB
testcase_09 AC 90 ms
79,744 KB
testcase_10 AC 89 ms
79,360 KB
testcase_11 AC 89 ms
79,744 KB
testcase_12 AC 65 ms
75,648 KB
testcase_13 AC 98 ms
78,484 KB
testcase_14 AC 89 ms
78,080 KB
testcase_15 AC 67 ms
75,520 KB
testcase_16 AC 78 ms
77,312 KB
testcase_17 AC 67 ms
75,420 KB
testcase_18 AC 70 ms
75,648 KB
testcase_19 AC 72 ms
75,264 KB
testcase_20 AC 73 ms
76,320 KB
testcase_21 AC 68 ms
75,440 KB
testcase_22 AC 82 ms
78,592 KB
testcase_23 AC 70 ms
75,648 KB
testcase_24 AC 69 ms
75,704 KB
testcase_25 AC 92 ms
78,976 KB
testcase_26 AC 66 ms
75,260 KB
testcase_27 AC 68 ms
75,808 KB
testcase_28 AC 79 ms
77,440 KB
testcase_29 AC 69 ms
75,684 KB
testcase_30 AC 75 ms
76,844 KB
testcase_31 AC 71 ms
75,392 KB
testcase_32 AC 66 ms
75,392 KB
testcase_33 AC 63 ms
75,520 KB
testcase_34 AC 68 ms
75,392 KB
testcase_35 AC 65 ms
75,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dev(left, right):
	a = [0 for i in xrange(d)]
	i = left
	while i < right:
		if S[i] == "d":
			count = 1
			for j in xrange(i+2,right):
				if count == 0:
					break
				if S[j] == "{":
					count += 1
				elif S[j] == "}":
					count -= 1
			for k, v in enumerate(dev(i+2,j)):
				if k > 0:
					a[k-1] += v*k
		else:
			deg = 0
			prod = 1
			for j in xrange(i,right):
				if S[j] == "+":
					break
				if S[j] == "x":
					deg += 1
				elif S[j].isdigit():
					prod = int(S[j])
			a[deg] += prod
		i = j + 1
	return a

N = int(raw_input())
d = int(raw_input()) + 1
S = list(raw_input())
print " ".join(map(str,dev(0,N)))
0