結果

問題 No.2856 Junk Market Game
ユーザー timitimi
提出日時 2024-09-04 16:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 63,448 KB
最終ジャッジ日時 2024-09-04 16:01:16
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,456 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 37 ms
53,344 KB
testcase_03 AC 37 ms
52,852 KB
testcase_04 AC 37 ms
53,096 KB
testcase_05 AC 38 ms
52,296 KB
testcase_06 AC 37 ms
52,128 KB
testcase_07 AC 38 ms
52,616 KB
testcase_08 AC 37 ms
52,568 KB
testcase_09 AC 38 ms
53,660 KB
testcase_10 AC 43 ms
60,140 KB
testcase_11 AC 48 ms
62,800 KB
testcase_12 AC 48 ms
62,708 KB
testcase_13 AC 43 ms
58,820 KB
testcase_14 AC 48 ms
61,444 KB
testcase_15 AC 42 ms
60,668 KB
testcase_16 AC 48 ms
61,588 KB
testcase_17 AC 46 ms
60,832 KB
testcase_18 AC 47 ms
62,328 KB
testcase_19 AC 45 ms
61,716 KB
testcase_20 AC 45 ms
58,884 KB
testcase_21 AC 48 ms
62,072 KB
testcase_22 AC 48 ms
62,576 KB
testcase_23 AC 47 ms
61,940 KB
testcase_24 AC 47 ms
61,372 KB
testcase_25 AC 42 ms
58,480 KB
testcase_26 AC 37 ms
52,556 KB
testcase_27 AC 46 ms
62,484 KB
testcase_28 AC 46 ms
62,468 KB
testcase_29 AC 48 ms
63,184 KB
testcase_30 AC 47 ms
62,016 KB
testcase_31 AC 47 ms
62,736 KB
testcase_32 AC 47 ms
61,972 KB
testcase_33 AC 47 ms
62,440 KB
testcase_34 AC 48 ms
63,448 KB
testcase_35 AC 47 ms
61,856 KB
testcase_36 AC 50 ms
61,832 KB
testcase_37 AC 48 ms
62,652 KB
testcase_38 AC 48 ms
61,916 KB
testcase_39 AC 48 ms
62,188 KB
testcase_40 AC 48 ms
62,184 KB
testcase_41 AC 48 ms
61,988 KB
testcase_42 AC 48 ms
62,160 KB
testcase_43 AC 48 ms
62,356 KB
testcase_44 AC 48 ms
61,564 KB
testcase_45 AC 49 ms
61,496 KB
testcase_46 AC 47 ms
61,876 KB
testcase_47 AC 60 ms
61,988 KB
testcase_48 AC 49 ms
61,496 KB
testcase_49 AC 48 ms
62,404 KB
testcase_50 AC 46 ms
61,876 KB
testcase_51 AC 47 ms
62,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#N,M,K=map(int,input().split())\
# A=sorted(A,key=lambda x: x[1])
# A=sorted(A,key=lambda x: x[0])
N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
C=[]
for i in range(2*N):
  C.append((A[i]+B[i],A[i],B[i],i))
C=sorted(C)

ans=0
for i in range(2*N):
  p,q=C[i][1],C[i][2]
  if i%2==0:
    ans+=p
  else:
    ans-=q
print(ans)
0