結果

問題 No.505 カードの数式2
ユーザー vwxyzvwxyz
提出日時 2022-04-08 10:56:28
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 260 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 546,364 KB
最終ジャッジ日時 2024-11-28 04:01:41
合計ジャッジ時間 7,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,636 KB
testcase_01 MLE -
testcase_02 AC 53 ms
76,948 KB
testcase_03 AC 35 ms
52,316 KB
testcase_04 AC 35 ms
53,224 KB
testcase_05 AC 35 ms
53,012 KB
testcase_06 AC 37 ms
53,112 KB
testcase_07 AC 38 ms
52,144 KB
testcase_08 AC 38 ms
52,908 KB
testcase_09 AC 38 ms
53,040 KB
testcase_10 AC 37 ms
53,040 KB
testcase_11 AC 36 ms
53,284 KB
testcase_12 AC 35 ms
52,496 KB
testcase_13 AC 36 ms
52,628 KB
testcase_14 AC 35 ms
52,948 KB
testcase_15 AC 34 ms
52,944 KB
testcase_16 AC 34 ms
53,100 KB
testcase_17 AC 35 ms
52,268 KB
testcase_18 AC 35 ms
52,484 KB
testcase_19 AC 34 ms
51,812 KB
testcase_20 AC 34 ms
52,496 KB
testcase_21 AC 35 ms
52,976 KB
testcase_22 AC 442 ms
255,476 KB
testcase_23 AC 120 ms
144,656 KB
testcase_24 AC 35 ms
54,136 KB
testcase_25 AC 34 ms
53,572 KB
testcase_26 AC 628 ms
291,252 KB
testcase_27 AC 765 ms
299,952 KB
testcase_28 TLE -
testcase_29 AC 34 ms
53,264 KB
testcase_30 AC 33 ms
52,916 KB
testcase_31 AC 712 ms
284,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
A=list(map(int,readline().split()))
dp=set()
dp.add(A[0])
for a in A[1:]:
    dp={i+a for i in dp}|{i-a for i in dp}|{i*a for i in dp}|({(-i)//a*(-1) for i in dp} if a else set())
ans=max(dp)
print(ans)
0