結果

問題 No.505 カードの数式2
ユーザー mkawa2
提出日時 2020-01-03 12:59:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 410,596 KB
最終ジャッジ日時 2024-11-22 19:08:33
合計ジャッジ時間 7,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))

def main():
    def div(a,b):
        res=abs(a)//abs(b)
        coff=(a*b>0)*2-1
        return coff*res
    n=II()
    aa=LI()
    now=set()
    now.add(aa[0])
    for a in aa[1:]:
        nxt=set()
        for s in now:
            nxt.add(s+a)
            nxt.add(s-a)
            nxt.add(s*a)
            if a!=0:nxt.add(div(s,a))
        now=nxt
    print(max(now))

main()
0