Submission #1520780


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;  cin >> n;
    int a[n] , b[n];
    set <int> st;
    int va;
    for(int i = 0; i < n; i++){
        cin >> a[i];
        st.insert(a[i]);
    }
    auto itr = st.begin();
    for(int i = 0; i < st.size(); i++){
        b[*itr] = i;
        itr++;
    }
    for(int i = 0; i < n; i++)
        cout << b[a[i]] << endl;
}

Submission Info

Submission Time
Task C - 座圧
User Masumi
Language C++14 (GCC 5.4.1)
Score 30
Code Size 406 Byte
Status RE
Exec Time 205 ms
Memory 5248 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 0 / 30 30 / 30 0 / 40
Status
AC × 1
RE × 9
AC × 11
AC × 11
RE × 19
Set Name Test Cases
Testset1 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt
Testset2 000.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt RE 96 ms 256 KB
002.txt RE 96 ms 256 KB
003.txt RE 96 ms 256 KB
004.txt RE 96 ms 256 KB
005.txt RE 96 ms 256 KB
006.txt RE 95 ms 256 KB
007.txt RE 95 ms 256 KB
008.txt RE 95 ms 256 KB
009.txt RE 95 ms 256 KB
010.txt AC 201 ms 3456 KB
011.txt AC 182 ms 1408 KB
012.txt AC 196 ms 2944 KB
013.txt AC 192 ms 1920 KB
014.txt AC 205 ms 4352 KB
015.txt AC 198 ms 2816 KB
016.txt AC 192 ms 2048 KB
017.txt AC 204 ms 4224 KB
018.txt AC 201 ms 4096 KB
019.txt AC 202 ms 3712 KB
020.txt RE 168 ms 5248 KB
021.txt RE 157 ms 3584 KB
022.txt RE 148 ms 1280 KB
023.txt RE 161 ms 4608 KB
024.txt RE 161 ms 4864 KB
025.txt RE 144 ms 896 KB
026.txt RE 151 ms 1664 KB
027.txt RE 158 ms 3840 KB
028.txt RE 150 ms 1536 KB
029.txt RE 163 ms 5248 KB