結果

問題 No.1679 マスゲーム
ユーザー otoshigootoshigo
提出日時 2021-09-17 18:16:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,056 bytes
コンパイル時間 4,057 ms
コンパイル使用メモリ 262,348 KB
実行使用メモリ 9,628 KB
最終ジャッジ日時 2024-06-29 17:31:24
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,472 KB
testcase_01 AC 5 ms
9,576 KB
testcase_02 AC 6 ms
9,628 KB
testcase_03 AC 170 ms
9,472 KB
testcase_04 AC 170 ms
9,472 KB
testcase_05 AC 171 ms
9,592 KB
testcase_06 AC 171 ms
9,488 KB
testcase_07 AC 167 ms
9,472 KB
testcase_08 AC 168 ms
9,504 KB
testcase_09 AC 166 ms
9,600 KB
testcase_10 AC 171 ms
9,468 KB
testcase_11 AC 171 ms
9,600 KB
testcase_12 AC 21 ms
9,548 KB
testcase_13 AC 73 ms
9,564 KB
testcase_14 AC 168 ms
9,472 KB
testcase_15 AC 146 ms
9,600 KB
testcase_16 AC 126 ms
9,472 KB
testcase_17 AC 7 ms
9,600 KB
testcase_18 AC 156 ms
9,596 KB
testcase_19 AC 6 ms
9,568 KB
testcase_20 AC 6 ms
9,560 KB
testcase_21 AC 6 ms
9,600 KB
testcase_22 AC 6 ms
9,548 KB
testcase_23 AC 6 ms
9,472 KB
testcase_24 AC 6 ms
9,464 KB
testcase_25 AC 6 ms
9,416 KB
testcase_26 AC 6 ms
9,576 KB
testcase_27 AC 6 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <iostream>
#include <algorithm>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using vi = vector<int>;  using vvi = vector<vi>;
using vl = vector<ll>;   using vvl = vector<vl>;
using vb = vector<bool>; using vvb = vector<vb>;
using vm = vector<mint>; using vvm = vector<vm>;
using vpi = vector<pii>; using vvpi = vector<vpi>;
using vpl = vector<pll>; using vvpl = vector<vpl>;
const int inf = 1 << 30;
const ll INF = 1LL << 60;
#define rep(i,m,n) for (int i = m; i < (int)(n); i++)
#define rrep(i,m,n) for (int i = m; i > (int)(n); i--)

int main(){
    int n; cin >> n;
    vl A(4e5+10),B(4e5+10);
    rep(i,0,n){
        int a,b,t; cin >> a >> b >> t;
        if (a == 1){
            A[t-b+2e5]++;
        }
        if (a == 0){
            B[t-b+2e5]++;
        }
    }
    ll ans = 0;
    rep(i,0,4e5+10){
        ans += A[i]*B[i];
    }
    cout << ans << endl;
}
0