結果

問題 No.505 カードの数式2
ユーザー hedwig100hedwig100
提出日時 2020-05-31 16:03:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-11-17 15:48:28
合計ジャッジ時間 11,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 42 ms
61,184 KB
testcase_02 AC 875 ms
75,392 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 32 ms
51,584 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 WA -
testcase_10 AC 33 ms
51,840 KB
testcase_11 WA -
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 32 ms
52,224 KB
testcase_14 AC 32 ms
51,968 KB
testcase_15 AC 31 ms
51,968 KB
testcase_16 AC 31 ms
51,968 KB
testcase_17 WA -
testcase_18 AC 32 ms
51,840 KB
testcase_19 AC 41 ms
61,312 KB
testcase_20 AC 45 ms
65,408 KB
testcase_21 AC 877 ms
75,264 KB
testcase_22 AC 868 ms
75,520 KB
testcase_23 AC 862 ms
75,776 KB
testcase_24 AC 889 ms
75,856 KB
testcase_25 AC 888 ms
75,904 KB
testcase_26 AC 854 ms
75,392 KB
testcase_27 AC 891 ms
75,392 KB
testcase_28 AC 880 ms
75,624 KB
testcase_29 WA -
testcase_30 AC 864 ms
75,136 KB
testcase_31 AC 876 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15

from itertools import permutations,product,combinations_with_replacement,groupby,accumulate,combinations
def main():
    N = int(input())
    A = list(map(int,input().split()))
    
    ans = -INF
    for L in product((0,1,2),repeat = N - 2):
        ret = A[0]
        for i in range(N - 2):
            if L[i] == 0:
                ret += A[i + 1]
            elif L[i] == 1:
                ret -= A[i + 1]
            else:
                ret *= A[i + 1]
        if ret < 0 and A[-1] < 0:
            ret = max(ret * A[-1],ret - A[-1])
        elif ret < 0 and A[-1] > 0:
            ret += A[-1]
        elif ret > 0 and A[-1] < 0:
            ret -= A[-1]
        elif ret > 0 and A[-1] > 0:
            ret = max(ret + A[-1],ret * A[-1])
        elif ret == 0:
            ret = abs(A[-1])
        ans = max(ans,ret)
    print(ans)
if __name__ == '__main__':
    main()
0