結果

問題 No.2856 Junk Market Game
ユーザー detteiuudetteiuu
提出日時 2024-08-25 16:46:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 63,436 KB
最終ジャッジ日時 2024-08-25 16:46:17
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,740 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 AC 37 ms
52,984 KB
testcase_03 AC 37 ms
52,252 KB
testcase_04 AC 37 ms
53,956 KB
testcase_05 AC 36 ms
53,672 KB
testcase_06 AC 41 ms
52,544 KB
testcase_07 AC 37 ms
52,476 KB
testcase_08 AC 36 ms
52,464 KB
testcase_09 AC 36 ms
52,284 KB
testcase_10 AC 48 ms
58,536 KB
testcase_11 AC 47 ms
61,880 KB
testcase_12 AC 46 ms
62,248 KB
testcase_13 AC 42 ms
58,716 KB
testcase_14 AC 46 ms
62,596 KB
testcase_15 AC 42 ms
59,956 KB
testcase_16 AC 47 ms
62,392 KB
testcase_17 AC 46 ms
61,512 KB
testcase_18 AC 46 ms
62,352 KB
testcase_19 AC 45 ms
61,504 KB
testcase_20 AC 42 ms
60,056 KB
testcase_21 AC 46 ms
61,624 KB
testcase_22 AC 45 ms
62,724 KB
testcase_23 AC 44 ms
62,048 KB
testcase_24 AC 45 ms
62,332 KB
testcase_25 AC 41 ms
60,216 KB
testcase_26 AC 36 ms
53,384 KB
testcase_27 AC 46 ms
62,840 KB
testcase_28 AC 44 ms
62,768 KB
testcase_29 AC 46 ms
63,436 KB
testcase_30 AC 53 ms
61,800 KB
testcase_31 AC 46 ms
61,496 KB
testcase_32 AC 46 ms
63,388 KB
testcase_33 AC 47 ms
61,872 KB
testcase_34 AC 48 ms
61,704 KB
testcase_35 AC 45 ms
63,200 KB
testcase_36 AC 46 ms
62,004 KB
testcase_37 AC 46 ms
61,872 KB
testcase_38 AC 46 ms
61,580 KB
testcase_39 AC 46 ms
62,924 KB
testcase_40 AC 46 ms
62,316 KB
testcase_41 AC 46 ms
61,872 KB
testcase_42 AC 45 ms
61,440 KB
testcase_43 AC 47 ms
61,832 KB
testcase_44 AC 47 ms
63,068 KB
testcase_45 AC 46 ms
62,664 KB
testcase_46 AC 47 ms
63,212 KB
testcase_47 AC 47 ms
61,732 KB
testcase_48 AC 46 ms
61,644 KB
testcase_49 AC 53 ms
62,900 KB
testcase_50 AC 46 ms
62,356 KB
testcase_51 AC 46 ms
63,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

S = [(A[i]+B[i], A[i], B[i]) for i in range(N*2)]
S.sort(key=lambda x:x[0])
ans = 0
for i in range(N*2):
    if i%2 == 0:
        ans += S[i][1]
    else:
        ans -= S[i][2]

print(ans)
0