結果

問題 No.505 カードの数式2
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-28 19:18:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 226 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 66,724 KB
最終ジャッジ日時 2024-09-28 19:18:56
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,292 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 34 ms
52,212 KB
testcase_03 AC 35 ms
53,680 KB
testcase_04 RE -
testcase_05 AC 36 ms
53,812 KB
testcase_06 AC 36 ms
52,328 KB
testcase_07 RE -
testcase_08 AC 34 ms
52,740 KB
testcase_09 RE -
testcase_10 AC 36 ms
52,080 KB
testcase_11 AC 35 ms
52,964 KB
testcase_12 AC 37 ms
52,544 KB
testcase_13 RE -
testcase_14 AC 36 ms
52,520 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 AC 36 ms
52,476 KB
testcase_19 RE -
testcase_20 AC 36 ms
53,772 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,556 KB
testcase_31 AC 36 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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