結果

問題 No.3130 Twin's Add Max Min Game
ユーザー miho-4
提出日時 2025-04-25 22:39:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 313 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 115,912 KB
最終ジャッジ日時 2025-04-25 22:39:25
合計ジャッジ時間 9,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 56
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
A.sort(reverse=1)
D=defaultdict(int)
for e in B:
	D[e]+=1
x=0
for _ in range(D["add"]):
	x+=A.pop()
for _ in range(D["max"]):
	x=max(x,A.pop())
for _ in range(D["min"]):
	x=min(x,A.pop())
print(x)
0