結果

問題 No.2284 Assembly
ユーザー Yilin FeiYilin Fei
提出日時 2024-01-08 18:12:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 169,208 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-08 18:12:45
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 100 ms
6,676 KB
testcase_09 AC 100 ms
6,676 KB
testcase_10 AC 100 ms
6,676 KB
testcase_11 AC 100 ms
6,676 KB
testcase_12 AC 100 ms
6,676 KB
testcase_13 AC 100 ms
6,676 KB
testcase_14 AC 100 ms
6,676 KB
testcase_15 AC 101 ms
6,676 KB
testcase_16 AC 101 ms
6,676 KB
testcase_17 AC 100 ms
6,676 KB
testcase_18 AC 112 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define Inf32 1000000001
#define Inf64 4000000000000000001

int main(){
    int n;
    cin >> n;
    vector<long long> a(n), b(n);
    for (int i = 0; i < n; ++i) cin >> a[i] >> b[i];
    long long as = 0, bs = 0;
    long long ans = 0;
    for (int i = n - 1; i >= 0; i--){
        ans += max(as * b[i], bs * a[i]);
        as += a[i];
        bs += b[i];
    }
    cout << ans << endl;
    return 0;
}
0