結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 325 ms
18,048 KB
testcase_04 AC 309 ms
18,048 KB
testcase_05 AC 313 ms
17,792 KB
testcase_06 AC 316 ms
17,920 KB
testcase_07 AC 314 ms
18,048 KB
testcase_08 AC 321 ms
17,792 KB
testcase_09 AC 320 ms
18,048 KB
testcase_10 AC 312 ms
17,920 KB
testcase_11 AC 322 ms
18,048 KB
testcase_12 AC 23 ms
5,248 KB
testcase_13 AC 114 ms
10,368 KB
testcase_14 AC 308 ms
17,792 KB
testcase_15 AC 261 ms
16,256 KB
testcase_16 AC 221 ms
14,848 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 155 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 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