結果

問題 No.10 +か×か
ユーザー square1001square1001
提出日時 2022-02-17 11:23:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,372 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-06-29 07:33:53
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 1,372 ms
90,880 KB
testcase_04 AC 1,174 ms
63,488 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 1,257 ms
90,752 KB
testcase_07 AC 1,185 ms
63,488 KB
testcase_08 AC 267 ms
26,368 KB
testcase_09 AC 469 ms
39,680 KB
testcase_10 AC 32 ms
11,136 KB
testcase_11 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
total = int(input())
A = list(map(int, input().split()))

dp = [ [ False ] * (total + 1) for i in range(N + 1) ]
flag = [ [ -1 ] * (total + 1) for i in range(N + 1) ]
dp[N][total] = True
for i in range(N - 1, -1, -1):
	for j in range(0, total // A[i] + 1):
		if dp[i + 1][j * A[i]]:
			dp[i][j] = True
			flag[i][j] = 1
	for j in range(0, total - A[i] + 1):
		if dp[i + 1][j + A[i]]:
			dp[i][j] = True
			flag[i][j] = 0

answer = ""
pos, val = 1, A[0]
while pos != N:
	if flag[pos][val] == 0:
		answer += '+'
		pos, val = pos + 1, val + A[pos]
	else:
		answer += '*'
		pos, val = pos + 1, val * A[pos]

print(answer)
0