Submission #4064766


Source Code Expand

#include <iostream>
#include<set>
#include<math.h>
using namespace std;
#define rep(i, n) for(int i=0;i<n;i++)

int main(){
    int N;
    cin >> N;
    set <int> s;
    int tmp;
    
    rep(i, N){
        cin >> tmp;
        s.insert(tmp);
    }
    cout << s.size() << endl;

    return 0;
}

Submission Info

Submission Time
Task B - Kagami Mochi
User japanesekeigo
Language Python (3.4.3)
Score 0
Code Size 313 Byte
Status RE
Exec Time 17 ms
Memory 2940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
RE × 3
RE × 13
Set Name Test Cases
Sample a01, a02, a03
All a01, a02, a03, b04, b05, b06, b07, b08, b09, b10, b11, b12, b13
Case Name Status Exec Time Memory
a01 RE 17 ms 2940 KB
a02 RE 17 ms 2940 KB
a03 RE 17 ms 2940 KB
b04 RE 17 ms 2940 KB
b05 RE 17 ms 2940 KB
b06 RE 17 ms 2940 KB
b07 RE 17 ms 2940 KB
b08 RE 17 ms 2940 KB
b09 RE 17 ms 2940 KB
b10 RE 17 ms 2940 KB
b11 RE 17 ms 2940 KB
b12 RE 17 ms 2940 KB
b13 RE 17 ms 2940 KB