結果
問題 | No.10 +か×か |
ユーザー | vwxyz |
提出日時 | 2021-06-28 17:06:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 240 ms / 5,000 ms |
コード長 | 1,194 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 128,868 KB |
最終ジャッジ日時 | 2024-12-14 15:48:19 |
合計ジャッジ時間 | 3,061 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
89,676 KB |
testcase_01 | AC | 143 ms
89,832 KB |
testcase_02 | AC | 145 ms
89,840 KB |
testcase_03 | AC | 237 ms
128,808 KB |
testcase_04 | AC | 210 ms
115,748 KB |
testcase_05 | AC | 148 ms
89,832 KB |
testcase_06 | AC | 240 ms
128,868 KB |
testcase_07 | AC | 212 ms
115,456 KB |
testcase_08 | AC | 167 ms
97,036 KB |
testcase_09 | AC | 179 ms
103,388 KB |
testcase_10 | AC | 149 ms
90,056 KB |
testcase_11 | AC | 146 ms
90,212 KB |
ソースコード
import bisect import copy import decimal import fractions import heapq import itertools import math import random import sys from collections import Counter, deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines N=int(readline()) total=int(readline()) A=list(map(int,readline().split())) dp=[[False]*(total+1) for i in range(N)] dp[N-1][total]=True for i in range(N-2,-1,-1): a=A[i+1] for t in range(total+1): if dp[i+1][t]: if 0<=t-a: dp[i][t-a]=True if t%a==0: dp[i][t//a]=True ans_lst=[] s=A[0] for i in range(1,N): a=A[i] if s+a<=total and dp[i][s+a]: s+=a ans_lst.append('+') else: s*=a ans_lst.append('*') print(*ans_lst,sep='')