結果

問題 No.505 カードの数式2
ユーザー kohei2019kohei2019
提出日時 2022-02-02 20:13:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-06-11 09:34:05
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 51 ms
61,312 KB
testcase_03 AC 34 ms
51,584 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 34 ms
51,584 KB
testcase_11 WA -
testcase_12 AC 33 ms
51,584 KB
testcase_13 WA -
testcase_14 AC 35 ms
51,584 KB
testcase_15 WA -
testcase_16 AC 33 ms
52,096 KB
testcase_17 WA -
testcase_18 AC 33 ms
51,712 KB
testcase_19 WA -
testcase_20 AC 44 ms
60,544 KB
testcase_21 AC 50 ms
62,592 KB
testcase_22 WA -
testcase_23 AC 49 ms
61,824 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 50 ms
62,208 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 48 ms
61,568 KB
testcase_31 AC 48 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsa = list(map(int,input().split()))
c = -float('INF')
for i in range(2**(N-1)):
    a = lsa[0]
    for j in range(N-1):
        if (i >> j) & 1:
            a *= lsa[j+1]
        else:
            if lsa[j+1] >= 0:
                a += lsa[j+1]
            else:
                a -= lsa[j+1]
    c = max(c,a)
print(c)
0