結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,028 KB
testcase_01 AC 31 ms
53,560 KB
testcase_02 AC 32 ms
52,948 KB
testcase_03 AC 33 ms
53,000 KB
testcase_04 AC 32 ms
52,124 KB
testcase_05 AC 32 ms
53,584 KB
testcase_06 AC 32 ms
52,552 KB
testcase_07 AC 31 ms
52,920 KB
testcase_08 AC 31 ms
52,268 KB
testcase_09 AC 31 ms
52,940 KB
testcase_10 AC 35 ms
52,756 KB
testcase_11 AC 34 ms
53,436 KB
testcase_12 AC 34 ms
52,416 KB
testcase_13 WA -
testcase_14 AC 32 ms
53,076 KB
testcase_15 WA -
testcase_16 AC 33 ms
52,552 KB
testcase_17 WA -
testcase_18 AC 32 ms
52,820 KB
testcase_19 WA -
testcase_20 AC 33 ms
52,760 KB
testcase_21 AC 33 ms
52,820 KB
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 32 ms
52,496 KB
testcase_31 AC 31 ms
51,824 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 v!=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