結果

問題 No.2856 Junk Market Game
ユーザー KudeKude
提出日時 2024-08-25 14:00:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 61,144 KB
最終ジャッジ日時 2024-08-25 14:00:49
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
d = []
ans = 0
for a, b in zip(map(int, input().split()), map(int, input().split())):
    ans -= b
    d.append(a + b)
d.sort()
ans += sum(d[::2])
print(ans)
0