結果

問題 No.1679 マスゲーム
ユーザー monnumonnu
提出日時 2021-09-16 21:58:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 3,727 ms
コンパイル使用メモリ 236,888 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-29 17:15:13
合計ジャッジ時間 8,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 221 ms
14,336 KB
testcase_04 AC 226 ms
14,336 KB
testcase_05 AC 224 ms
14,336 KB
testcase_06 AC 226 ms
14,336 KB
testcase_07 AC 221 ms
14,336 KB
testcase_08 AC 222 ms
14,464 KB
testcase_09 AC 222 ms
14,336 KB
testcase_10 AC 223 ms
14,336 KB
testcase_11 AC 220 ms
14,336 KB
testcase_12 AC 19 ms
6,944 KB
testcase_13 AC 86 ms
8,576 KB
testcase_14 AC 221 ms
14,336 KB
testcase_15 AC 186 ms
13,056 KB
testcase_16 AC 164 ms
12,032 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 141 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 2000005
//#define MOD 1000000007
#define MOD 998244353
#define INF 1000000000
//#define INF 1000000000000000000

int main(){
  int N;
  cin>>N;
  map<int,int> m1,m2;
  for(int i=0;i<N;i++){
    int A,B,T;
    cin>>A>>B>>T;
    if(A==0){
      m1[B-T]++;
    }else{
      m2[B-T]++;
    }
  }
  ll ans=0;
  for(auto p1:m1){
    ans+=(ll)p1.second*(ll)m2[p1.first];
  }
  cout<<ans<<'\n';
}
0