結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 44 ms
51,712 KB
testcase_04 AC 43 ms
51,840 KB
testcase_05 AC 43 ms
51,584 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 190 ms
84,480 KB
testcase_09 AC 185 ms
84,096 KB
testcase_10 AC 188 ms
84,096 KB
testcase_11 AC 189 ms
84,224 KB
testcase_12 AC 188 ms
84,096 KB
testcase_13 AC 188 ms
84,224 KB
testcase_14 AC 185 ms
84,224 KB
testcase_15 AC 189 ms
84,224 KB
testcase_16 AC 187 ms
84,096 KB
testcase_17 AC 185 ms
84,096 KB
testcase_18 AC 185 ms
84,224 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