結果
| 問題 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
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)
とりゐ