結果

問題 No.2284 Assembly
ユーザー とりゐとりゐ
提出日時 2023-04-28 22:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 84,256 KB
最終ジャッジ日時 2024-11-17 21:35:33
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 30 ms
51,968 KB
testcase_02 AC 30 ms
51,840 KB
testcase_03 AC 30 ms
52,224 KB
testcase_04 AC 31 ms
51,968 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 30 ms
51,968 KB
testcase_07 AC 30 ms
51,968 KB
testcase_08 AC 140 ms
84,084 KB
testcase_09 AC 145 ms
84,224 KB
testcase_10 AC 139 ms
83,940 KB
testcase_11 AC 140 ms
83,980 KB
testcase_12 AC 138 ms
84,256 KB
testcase_13 AC 139 ms
84,032 KB
testcase_14 AC 139 ms
83,840 KB
testcase_15 AC 139 ms
84,128 KB
testcase_16 AC 141 ms
84,044 KB
testcase_17 AC 138 ms
83,880 KB
testcase_18 AC 136 ms
84,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a,b=[0]*n,[0]*n
for i in range(n):
  a[i],b[i]=map(int,input().split())

cuma=[0]*(n+1)
cumb=[0]*(n+1)
for i in range(n-1,-1,-1):
  cuma[i]=cuma[i+1]+a[i]
  cumb[i]=cumb[i+1]+b[i]

row=[-1]*n
L,R=0,n-1
for i in range(n):
  if a[i]*cumb[i+1]<b[i]*cuma[i+1]:
    row[L]=i
    L+=1
  else:
    row[R]=i
    R-=1

ans=0
tmp=0
for i in row:
  ans+=tmp*a[i]
  tmp+=b[i]

print(ans)
0