結果
問題 | No.2284 Assembly |
ユーザー | みここ |
提出日時 | 2023-02-10 21:14:46 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 109 ms / 2,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 726 ms |
コンパイル使用メモリ | 68,900 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-11-17 19:04:44 |
合計ジャッジ時間 | 3,251 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#include <iostream> using namespace std; typedef long long ll; void solve() { int n; cin >> n; ll a[200002], b[200002]; for(int i = 0; i < n; i++) { cin >> a[i] >> b[i]; } ll sa = 0, sb = 0; ll ans = 0; for(int i = n - 1; i >= 0; i--) { ans += max(sa * b[i], sb * a[i]); sa += a[i]; sb += b[i]; } cout << ans << endl; } int main() { solve(); }