結果

問題 No.1679 マスゲーム
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-09-11 18:29:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 173,548 KB
実行使用メモリ 11,696 KB
最終ジャッジ日時 2024-06-23 02:45:57
合計ジャッジ時間 6,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 171 ms
11,688 KB
testcase_04 AC 212 ms
11,524 KB
testcase_05 AC 177 ms
11,564 KB
testcase_06 AC 169 ms
11,564 KB
testcase_07 AC 177 ms
11,568 KB
testcase_08 AC 168 ms
11,560 KB
testcase_09 AC 166 ms
11,640 KB
testcase_10 AC 168 ms
11,696 KB
testcase_11 AC 168 ms
11,560 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 68 ms
7,116 KB
testcase_14 AC 173 ms
11,548 KB
testcase_15 AC 144 ms
10,704 KB
testcase_16 AC 132 ms
9,888 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 146 ms
5,760 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.09.11 18:29:30
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    unordered_map<int,int> mp;
    vector<int> a(n),b(n),t(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i] >> b[i] >> t[i];
        if (a[i] == 0) mp[b[i]-t[i]]++;
    }
    ll ans = 0;
    for (int i = 0; i < n; i++) {
        if (a[i] == 1) ans += mp[b[i]-t[i]];
    }
    cout << ans << endl;
    return 0;
}
0