結果

問題 No.10 +か×か
ユーザー 👑 rin204rin204
提出日時 2022-06-12 15:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 124,928 KB
最終ジャッジ日時 2024-09-23 04:04:43
合計ジャッジ時間 2,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 153 ms
102,928 KB
testcase_04 AC 103 ms
76,800 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 442 ms
124,928 KB
testcase_07 AC 150 ms
95,084 KB
testcase_08 AC 112 ms
79,052 KB
testcase_09 AC 83 ms
79,944 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = int(input())
A = list(map(int, input().split()))
ope = []

memo = set()
def dfs(t, tot):
    if t == n:
        if tot == x:
            print(*ope, sep="")
            exit()
        return
    if t + tot * n in memo:
        return
    if tot + A[t] <= x:
        ope.append("+")
        dfs(t + 1, tot + A[t])
        ope.pop()
    if tot * A[t] <= x:
        ope.append("*")
        dfs(t + 1, tot * A[t])
        ope.pop()
    memo.add(t + tot * n)

dfs(1, A[0])
0