結果

問題 No.505 カードの数式2
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 22:47:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 53,944 KB
最終ジャッジ日時 2024-12-14 06:49:32
合計ジャッジ時間 2,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,264 KB
testcase_01 AC 40 ms
53,944 KB
testcase_02 AC 40 ms
52,656 KB
testcase_03 AC 39 ms
53,376 KB
testcase_04 AC 40 ms
53,428 KB
testcase_05 AC 38 ms
52,276 KB
testcase_06 AC 42 ms
53,876 KB
testcase_07 AC 40 ms
52,528 KB
testcase_08 AC 39 ms
52,460 KB
testcase_09 AC 39 ms
53,248 KB
testcase_10 AC 39 ms
53,112 KB
testcase_11 AC 39 ms
52,304 KB
testcase_12 AC 39 ms
53,140 KB
testcase_13 AC 40 ms
52,328 KB
testcase_14 AC 38 ms
53,300 KB
testcase_15 AC 40 ms
52,948 KB
testcase_16 AC 40 ms
52,724 KB
testcase_17 AC 41 ms
52,988 KB
testcase_18 AC 40 ms
53,012 KB
testcase_19 AC 41 ms
53,228 KB
testcase_20 AC 40 ms
52,600 KB
testcase_21 AC 40 ms
52,888 KB
testcase_22 AC 40 ms
53,544 KB
testcase_23 AC 40 ms
53,008 KB
testcase_24 AC 41 ms
53,072 KB
testcase_25 AC 40 ms
53,212 KB
testcase_26 AC 40 ms
52,884 KB
testcase_27 AC 39 ms
53,172 KB
testcase_28 AC 41 ms
52,456 KB
testcase_29 AC 41 ms
53,208 KB
testcase_30 AC 40 ms
53,040 KB
testcase_31 AC 39 ms
53,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

dp=[[a[0],a[0]] for i in range(n)]

for i in range(n-1):
    t=[]
    t.append(dp[i][0] - a[i+1])
    t.append(dp[i][1] - a[i+1])
    t.append(dp[i][0] + a[i+1])
    t.append(dp[i][1] + a[i+1])
    t.append(dp[i][0] * a[i+1])
    t.append(dp[i][1] * a[i+1])
    if a[i+1] !=0:
        if dp[i][0] < 0 or a[i+1] <0:
            if dp[i][0] < 0 and a[i+1] <0:
                t.append(dp[i][0] // a[i+1])
            else:
                t.append(-(abs(dp[i][0]) // abs(a[i+1])))
        else:
            t.append(dp[i][0] // a[i+1])
        if dp[i][1] < 0 or a[i+1] <0:
            if dp[i][1] < 0 and a[i+1] <0:
                t.append(dp[i][1] // a[i+1])
            else:
                t.append(-(abs(dp[i][1]) // abs(a[i+1])))
        else:
            t.append(dp[i][1] // a[i+1])
    t.sort()
    dp[i+1][0]=t[0]
    dp[i+1][1]=t[-1]

print(dp[-1][1])

# for i in dp:
#     print(i)
    
0