結果

問題 No.2856 Junk Market Game
ユーザー PNJPNJ
提出日時 2024-09-03 19:53:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 62,536 KB
最終ジャッジ日時 2024-09-03 19:53:58
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,088 KB
testcase_01 AC 37 ms
52,944 KB
testcase_02 AC 37 ms
51,880 KB
testcase_03 AC 37 ms
52,824 KB
testcase_04 AC 37 ms
53,068 KB
testcase_05 AC 39 ms
53,096 KB
testcase_06 AC 37 ms
53,136 KB
testcase_07 AC 40 ms
52,464 KB
testcase_08 AC 37 ms
51,936 KB
testcase_09 AC 36 ms
52,356 KB
testcase_10 AC 42 ms
59,100 KB
testcase_11 AC 47 ms
60,688 KB
testcase_12 AC 44 ms
61,152 KB
testcase_13 AC 40 ms
58,960 KB
testcase_14 AC 44 ms
62,288 KB
testcase_15 AC 41 ms
60,168 KB
testcase_16 AC 44 ms
61,120 KB
testcase_17 AC 44 ms
61,464 KB
testcase_18 AC 43 ms
60,556 KB
testcase_19 AC 44 ms
61,272 KB
testcase_20 AC 42 ms
59,200 KB
testcase_21 AC 45 ms
60,768 KB
testcase_22 AC 45 ms
60,952 KB
testcase_23 AC 45 ms
60,932 KB
testcase_24 AC 44 ms
60,728 KB
testcase_25 AC 41 ms
59,508 KB
testcase_26 AC 38 ms
52,728 KB
testcase_27 AC 46 ms
61,536 KB
testcase_28 AC 46 ms
59,924 KB
testcase_29 AC 47 ms
61,336 KB
testcase_30 AC 46 ms
62,016 KB
testcase_31 AC 47 ms
60,868 KB
testcase_32 AC 47 ms
60,892 KB
testcase_33 AC 46 ms
60,916 KB
testcase_34 AC 46 ms
62,112 KB
testcase_35 AC 45 ms
62,020 KB
testcase_36 AC 46 ms
61,084 KB
testcase_37 AC 44 ms
60,752 KB
testcase_38 AC 45 ms
62,536 KB
testcase_39 AC 45 ms
61,520 KB
testcase_40 AC 46 ms
61,236 KB
testcase_41 AC 44 ms
60,864 KB
testcase_42 AC 44 ms
61,060 KB
testcase_43 AC 45 ms
61,932 KB
testcase_44 AC 47 ms
61,104 KB
testcase_45 AC 45 ms
60,956 KB
testcase_46 AC 46 ms
61,440 KB
testcase_47 AC 48 ms
61,648 KB
testcase_48 AC 46 ms
61,416 KB
testcase_49 AC 44 ms
61,596 KB
testcase_50 AC 45 ms
61,240 KB
testcase_51 AC 46 ms
60,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ans = -sum(B)
C = [A[i] + B[i] for i in range(2 * N)]
C.sort()
for i in range(2 * N):
  if i % 2 == 0:
    ans += C[i]
print(ans)
0