結果

問題 No.178 美しいWhitespace (1)
ユーザー gon_027gon_027
提出日時 2020-01-02 13:55:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 66,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 06:28:41
合計ジャッジ時間 1,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 2 ms
6,944 KB
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

long long s[1010];
long long t[1010];

int main(){
    long long n;
    cin >> n;

    long long tmax = 0;
    long long ans = -1;

    for(long long i = 0; i < n; ++i){
        long long a, b;
        cin >> a >> b;
        s[i] = a;
        t[i] = b;

        long long x = a + b * 4;

        if(i != 0){
            if(tmax % 2 != x % 2){
                cout << -1 << endl;
            }
        }

        tmax = std::max(tmax, x);
    }

    long long sum = 0;
    for(long long i = 0; i < n; ++i){
        long long x = tmax - (s[i] + t[i] * 4);
        sum += x;
    }

    cout << sum / 2 << endl;
}
0