結果

問題 No.10 +か×か
ユーザー ゆるくゆるく
提出日時 2014-11-10 22:47:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,012 KB
最終ジャッジ日時 2024-12-14 15:25:32
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,264 KB
testcase_01 AC 36 ms
11,520 KB
testcase_02 AC 35 ms
11,392 KB
testcase_03 AC 337 ms
33,604 KB
testcase_04 AC 42 ms
11,776 KB
testcase_05 AC 35 ms
11,264 KB
testcase_06 AC 561 ms
50,012 KB
testcase_07 AC 277 ms
30,056 KB
testcase_08 AC 57 ms
12,928 KB
testcase_09 AC 69 ms
14,316 KB
testcase_10 AC 36 ms
11,264 KB
testcase_11 AC 36 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy

n = int(input())
total = int(input())
a = [int(i) for i in input().split()]
ans = [''] * 50
memo = defaultdict(lambda:defaultdict(int))
def solve(i, t):
  if t == total and i == n - 1:
    print(''.join(ans))
    sys.exit(0)
  if i >= n - 1 or t > total or memo[i][t]:
    return
  ans[i] = '+'
  solve(i + 1, t + a[i + 1])
  ans[i] = '*'
  solve(i + 1, t * a[i + 1])
  memo[i][t] = True
  return

t = a[0]
solve(0, t)
0