結果

問題 No.10 +か×か
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-07 21:31:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 110,548 KB
最終ジャッジ日時 2024-06-09 13:46:32
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,704 KB
testcase_01 AC 43 ms
55,428 KB
testcase_02 AC 46 ms
57,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
56,304 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 101 ms
82,492 KB
testcase_10 AC 51 ms
64,728 KB
testcase_11 AC 47 ms
62,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

dp = [[False]*(T+2) for _ in range(N)]
a = A[0]
dp[0][a]=3
for i in range(N-1):
    a = A[i+1]
    
    for j in range(T+1):
        
        if not dp[i][j]:
            continue
        
        dp[i+1][min(j+a,T+1)] = 1
        
    for j in range(T+1):
        
        if not dp[i][j]:
            continue
        if dp[i+1][min(j*a,T+1)]==1:
            continue
        dp[i+1][min(j*a,T+1)] = 2

ans = []
now = T
for i in range(N-1,0,-1):
    
    a = A[i]
    
    if dp[i][now]==1:
        ans.append('+')
        now -= a
    else:
        ans.append('*')
        now //= a
ans.reverse()
print(*ans,sep='')
    
    
0