Submission #3269530


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);
        ++mp[a];
    }
    
    int ans = 0;
    for(auto m : mp) if(m.second % 2 == 1) ++ans;
    printf("%d\n", ans);
    
    return 0;
}

Submission Info

Submission Time
Task C - Write and Erase
User sgneet
Language C++14 (GCC 5.4.1)
Score 300
Code Size 442 Byte
Status AC
Exec Time 50 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 12 ms 256 KB
02.txt AC 12 ms 256 KB
03.txt AC 50 ms 6528 KB
04.txt AC 13 ms 256 KB
05.txt AC 43 ms 4352 KB
06.txt AC 16 ms 256 KB
07.txt AC 10 ms 256 KB
08.txt AC 19 ms 384 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