結果

問題 No.999 てん vs. ほむ
ユーザー hiro71687khiro71687k
提出日時 2023-08-26 23:59:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 4,289 ms
コンパイル使用メモリ 262,232 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-06-07 19:22:53
合計ジャッジ時間 6,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 73 ms
5,632 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 17 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 78 ms
5,632 KB
testcase_14 AC 77 ms
5,632 KB
testcase_15 AC 78 ms
5,760 KB
testcase_16 AC 81 ms
5,632 KB
testcase_17 AC 54 ms
5,504 KB
testcase_18 AC 52 ms
5,504 KB
testcase_19 AC 52 ms
5,376 KB
testcase_20 AC 52 ms
5,504 KB
testcase_21 AC 76 ms
5,632 KB
testcase_22 AC 76 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

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