結果

問題 No.1679 マスゲーム
ユーザー maguromaguro
提出日時 2021-09-11 18:35:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 208,244 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-23 02:51:47
合計ジャッジ時間 6,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 235 ms
18,048 KB
testcase_04 AC 230 ms
17,920 KB
testcase_05 AC 303 ms
18,048 KB
testcase_06 AC 242 ms
18,048 KB
testcase_07 AC 255 ms
18,048 KB
testcase_08 AC 266 ms
17,920 KB
testcase_09 AC 251 ms
18,048 KB
testcase_10 AC 257 ms
18,048 KB
testcase_11 AC 257 ms
18,048 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 92 ms
10,240 KB
testcase_14 AC 264 ms
17,920 KB
testcase_15 AC 211 ms
16,256 KB
testcase_16 AC 178 ms
14,848 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 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 3 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
constexpr int Inf = 2000000000;
constexpr long long INF= 2000000000000000000;
 
template<typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; }
template<typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; }

template<typename T,typename U>
T modpow(T N, U P, T M = -1){
    if(P < 0) return 0;
    T ret = 1;
    if(M != -1) ret %= M;
    while(P) {
        if(P & 1) {
            if(M == -1) ret *= N;
            else ret = ret * N % M;
        }
        P /= 2;
        if(M == -1) N *= N;
        else N = N * N % M;
    }
    return ret;
}

int main() {
    int N;
    cin >> N;
    map<int,long long> Red;
    map<int,long long> Blue;
    for(int i = 0;i < N;i++) {
        int A,B,T;
        cin >> A >> B >> T;
        if(A == 0) Red[B - T]++;
        else Blue[B - T]++;
    }
    long long ret = 0;
    for(auto& [key,value] : Red) {
        ret += value * Blue[key];
    }
    cout << ret << endl;
}
0