Submission #3269308


Source Code Expand

#include <bits/stdc++.h>
#define MOD 1000000007
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> T;

int N;
map<ll, int> mp;

int main(void){
    
    scanf("%d", &N);
    for(int i = 0; i < N; ++i){
        ll a; scanf("%lld", &a);
        if(mp.find(a) == mp.end()) ++mp[a];
        else mp.erase(a);
    }
    printf("%d\n", (int)mp.size());
    
    return 0;
}

Submission Info

Submission Time
Task C - Write and Erase
User sgneet
Language C++14 (GCC 5.4.1)
Score 300
Code Size 432 Byte
Status AC
Exec Time 56 ms
Memory 6528 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:13:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &N);
                    ^
./Main.cpp:15:32: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         ll a; scanf("%lld", &a);
                                ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 11
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
01.txt AC 15 ms 256 KB
02.txt AC 15 ms 256 KB
03.txt AC 56 ms 6528 KB
04.txt AC 18 ms 256 KB
05.txt AC 50 ms 2560 KB
06.txt AC 26 ms 256 KB
07.txt AC 12 ms 256 KB
08.txt AC 30 ms 256 KB
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
sample_03.txt AC 1 ms 256 KB