結果

問題 No.1679 マスゲーム
ユーザー aspiaspi
提出日時 2021-09-10 22:08:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 89,000 KB
実行使用メモリ 7,696 KB
最終ジャッジ日時 2024-06-23 02:00:35
合計ジャッジ時間 5,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 247 ms
7,568 KB
testcase_04 AC 249 ms
7,556 KB
testcase_05 AC 249 ms
7,600 KB
testcase_06 AC 246 ms
7,588 KB
testcase_07 AC 245 ms
7,688 KB
testcase_08 AC 249 ms
7,680 KB
testcase_09 AC 247 ms
7,696 KB
testcase_10 AC 246 ms
7,576 KB
testcase_11 AC 243 ms
7,696 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 88 ms
5,376 KB
testcase_14 AC 244 ms
7,572 KB
testcase_15 AC 201 ms
7,072 KB
testcase_16 AC 171 ms
6,516 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 156 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 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
using namespace std;

int main() {
    long long N, A, B, T, ans = 0;
    map<int, int>ma;
    vector<int>Xpoints;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> A >> B >> T;
        if (A == 0) {
            if (ma.count(B - T))ma[B - T]++;
            else ma[B - T] = 1;
        }
        else Xpoints.push_back(B - T);
    }
    for (int t : Xpoints) {
        if (ma.count(t))ans += ma[t];
    }
    cout << ans << endl;
}
0