結果

問題 No.1679 マスゲーム
ユーザー erbowlerbowl
提出日時 2022-08-28 21:51:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 202,180 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-04-23 18:08:42
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 244 ms
18,048 KB
testcase_04 AC 247 ms
18,048 KB
testcase_05 AC 253 ms
18,048 KB
testcase_06 AC 262 ms
18,048 KB
testcase_07 AC 249 ms
18,176 KB
testcase_08 AC 242 ms
18,176 KB
testcase_09 AC 263 ms
18,176 KB
testcase_10 AC 248 ms
17,920 KB
testcase_11 AC 240 ms
18,176 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 96 ms
10,496 KB
testcase_14 AC 247 ms
18,048 KB
testcase_15 AC 209 ms
16,256 KB
testcase_16 AC 173 ms
14,976 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 142 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 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 #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n;
    std::cin >> n;
    map<ll,ll> r,b;
    for (int i = 0; i < n; i++) {
        ll a,bb,t;
        std::cin >> a>>bb>>t;
        if(a==0){
            r[bb-t]++;
        }else{
            b[bb-t]++;
        }
    }
    ll ans = 0;
    for (auto e : b) {
        ans += r[e.first]*e.second;
    }
    std::cout << ans << std::endl;
}
0