結果

問題 No.10 +か×か
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 15:08:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 105,496 KB
最終ジャッジ日時 2024-10-20 15:08:21
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 38 ms
52,056 KB
testcase_02 AC 38 ms
52,068 KB
testcase_03 AC 174 ms
105,392 KB
testcase_04 AC 105 ms
92,636 KB
testcase_05 AC 38 ms
53,428 KB
testcase_06 AC 169 ms
105,496 KB
testcase_07 AC 108 ms
91,008 KB
testcase_08 AC 74 ms
73,080 KB
testcase_09 AC 83 ms
77,624 KB
testcase_10 AC 53 ms
61,492 KB
testcase_11 AC 43 ms
59,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
T=int(input())
a=list(map(int,input().split()))
X=1<<60
q=[X]*(T+1)
q[a[0]]=0
for v in a[1:]:
  nq=[X]*(T+1)
  for i in range(T+1):
    if i+v<=T:
      nq[i+v]=min(nq[i+v],q[i]*2+0)
    if i*v<=T:
      nq[i*v]=min(nq[i*v],q[i]*2+1)
  q=nq
o=""
for i in reversed(range(n-1)):
  o+="*" if (q[T]>>i)&1 else "+"
print(o)
0