結果

問題 No.10 +か×か
ユーザー ayaoniayaoni
提出日時 2020-12-04 09:48:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-09-14 20:12:48
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 41 ms
52,096 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 106 ms
74,624 KB
testcase_10 AC 52 ms
60,800 KB
testcase_11 AC 49 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
total = I()
A = LI()

dp = [[0]*(total+1) for _ in range(N)]
dp[0][A[0]] = 1
for i in range(1,N):
    a = A[i]
    for j in range(1,total+1):
        if j >= a:
            dp[i][j] |= dp[i-1][j-a]
        if j % a == 0:
            dp[i][j] |= dp[i-1][j//a]

ans = ''
x = total
for i in range(N-1,0,-1):
    a = A[i]
    if dp[i-1][x-a]:
        ans += '+'
        x -= a
    else:
        ans += '*'
        x //= a

print(ans[::-1])
0