結果

問題 No.999 てん vs. ほむ
ユーザー hiro71687khiro71687k
提出日時 2023-08-26 23:59:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 4,069 ms
コンパイル使用メモリ 261,636 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-12-26 03:58:33
合計ジャッジ時間 6,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1009999999999999990;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(2*n);
    for (ll i = 0; i < n*2; i++)
    {
        cin >> a[i];
    }
    vector<ll>b(n);
    for (ll i = 0; i < n; i++)
    {
        b[i]=a[i*2+1]-a[i*2];
        if (i>0)
        {
            b[i]+=b[i-1];
        }
    }
    ll ans=b[n-1];
    ll now=b[n-1];
    for (ll i = 0; i < n; i++)
    {
        now+=(a[i*2]-a[i*2+1])*2;
        ans=max(ans,now);
    }
    cout << ans << endl;
}
0