結果

問題 No.10 +か×か
ユーザー miztommiztom
提出日時 2024-03-12 16:09:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,883 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 332,560 KB
最終ジャッジ日時 2024-09-29 22:21:31
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 44 ms
53,496 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 1,883 ms
327,156 KB
testcase_04 AC 106 ms
77,704 KB
testcase_05 AC 44 ms
54,272 KB
testcase_06 AC 1,821 ms
332,560 KB
testcase_07 AC 534 ms
185,680 KB
testcase_08 AC 216 ms
100,400 KB
testcase_09 AC 157 ms
87,224 KB
testcase_10 AC 42 ms
54,272 KB
testcase_11 AC 40 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
n=int(input())
t=int(input())
a=map(int,input().split())
d=defaultdict(lambda:" "*n)
d[next(a)]=""
for i in a:
    e=defaultdict(lambda:" "*n)
    for j in d:
        if(p:=j+i)<=t:e[p]=max(e[p],d[j]+"+")
        if(p:=j*i)<=t:e[p]=max(e[p],d[j]+"*")
    del d;d=e;del e
print(d[t])
0