結果

問題 No.2856 Junk Market Game
ユーザー nikoro256nikoro256
提出日時 2024-08-25 14:18:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 64,296 KB
最終ジャッジ日時 2024-08-25 14:18:48
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,092 KB
testcase_01 AC 38 ms
52,320 KB
testcase_02 AC 38 ms
52,088 KB
testcase_03 AC 38 ms
53,140 KB
testcase_04 AC 39 ms
53,492 KB
testcase_05 AC 38 ms
52,340 KB
testcase_06 AC 38 ms
53,752 KB
testcase_07 AC 38 ms
52,208 KB
testcase_08 AC 38 ms
53,404 KB
testcase_09 AC 39 ms
52,012 KB
testcase_10 AC 48 ms
59,860 KB
testcase_11 AC 54 ms
62,252 KB
testcase_12 AC 51 ms
62,608 KB
testcase_13 AC 43 ms
59,616 KB
testcase_14 AC 47 ms
62,176 KB
testcase_15 AC 43 ms
59,708 KB
testcase_16 AC 55 ms
62,800 KB
testcase_17 AC 47 ms
61,700 KB
testcase_18 AC 48 ms
62,252 KB
testcase_19 AC 47 ms
61,176 KB
testcase_20 AC 44 ms
60,672 KB
testcase_21 AC 49 ms
62,820 KB
testcase_22 AC 49 ms
63,000 KB
testcase_23 AC 48 ms
61,932 KB
testcase_24 AC 49 ms
62,908 KB
testcase_25 AC 43 ms
58,872 KB
testcase_26 AC 37 ms
52,196 KB
testcase_27 AC 49 ms
62,184 KB
testcase_28 AC 47 ms
62,132 KB
testcase_29 AC 48 ms
62,348 KB
testcase_30 AC 49 ms
62,904 KB
testcase_31 AC 49 ms
62,516 KB
testcase_32 AC 50 ms
62,504 KB
testcase_33 AC 49 ms
62,120 KB
testcase_34 AC 49 ms
62,500 KB
testcase_35 AC 54 ms
62,188 KB
testcase_36 AC 49 ms
63,060 KB
testcase_37 AC 48 ms
62,792 KB
testcase_38 AC 49 ms
62,492 KB
testcase_39 AC 50 ms
62,116 KB
testcase_40 AC 50 ms
62,172 KB
testcase_41 AC 49 ms
62,248 KB
testcase_42 AC 50 ms
62,700 KB
testcase_43 AC 50 ms
63,316 KB
testcase_44 AC 51 ms
63,884 KB
testcase_45 AC 51 ms
64,296 KB
testcase_46 AC 50 ms
62,460 KB
testcase_47 AC 49 ms
62,560 KB
testcase_48 AC 49 ms
63,016 KB
testcase_49 AC 49 ms
63,228 KB
testcase_50 AC 46 ms
62,800 KB
testcase_51 AC 47 ms
62,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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