結果

問題 No.505 カードの数式2
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-28 19:21:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 53,696 KB
最終ジャッジ日時 2024-09-28 19:21:19
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,216 KB
testcase_01 AC 34 ms
52,396 KB
testcase_02 AC 34 ms
52,444 KB
testcase_03 AC 33 ms
53,476 KB
testcase_04 AC 34 ms
52,864 KB
testcase_05 AC 34 ms
53,240 KB
testcase_06 AC 34 ms
52,576 KB
testcase_07 AC 34 ms
52,492 KB
testcase_08 AC 35 ms
53,100 KB
testcase_09 AC 34 ms
52,336 KB
testcase_10 AC 34 ms
52,436 KB
testcase_11 AC 34 ms
52,936 KB
testcase_12 AC 34 ms
52,872 KB
testcase_13 WA -
testcase_14 AC 34 ms
52,768 KB
testcase_15 WA -
testcase_16 AC 34 ms
53,144 KB
testcase_17 WA -
testcase_18 AC 36 ms
53,664 KB
testcase_19 WA -
testcase_20 AC 35 ms
52,208 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 37 ms
52,480 KB
testcase_31 AC 34 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
q=[a[0]]*4
X=10**20
for v in a[1:]:
	nq=[-X]*4
	for i in range(4):
		if v!=0:
			nq[0]=max(nq[0],q[i]+v)
			nq[1]=max(nq[1],q[i]-v)
			nq[2]=max(nq[2],q[i]*v)
			nq[3]=max(nq[3],q[i]//v)
		else:
			nq[0]=max(nq[0],q[i]+v)
			nq[1]=max(nq[1],q[i]-v)
			nq[2]=max(nq[2],q[i]*v)
	q=nq
print(max(q))
0