結果
問題 | No.10 +か×か |
ユーザー | tktk_snsn |
提出日時 | 2021-10-26 23:48:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 141,616 KB |
最終ジャッジ日時 | 2024-10-06 07:48:44 |
合計ジャッジ時間 | 2,046 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
55,384 KB |
testcase_01 | AC | 42 ms
55,844 KB |
testcase_02 | AC | 43 ms
55,432 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 39 ms
56,308 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 87 ms
89,756 KB |
testcase_10 | AC | 47 ms
61,000 KB |
testcase_11 | AC | 44 ms
60,044 KB |
ソースコード
from collections import defaultdict import heapq inf = 10 ** 18 N = int(input()) T = int(input()) A = list(map(int, input().split())) dp = [[0] * (T + 1) for _ in range(N)] dp[0][A[0]] = 1 for i in range(1, N): for s in range(1, T+1): if dp[i-1][s]: t = s * A[i] if t <= T: dp[i][t] = True t = s + A[i] if t <= T: dp[i][t] = True ans = [] now = T for i in reversed(range(N - 1)): if dp[i][now - A[i+1]]: now -= A[i+1] ans.append("+") else: now //= A[i+1] ans.append("*") ans.reverse() print("".join(ans))