Submission #2700486


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef pair<ll,ll> P;
 
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const ll INF = 1LL<<29;
const ll mod = 1e9+7;
 
#define rep(i, a, b) for(ll (i) = (a); (i) < (b);++i)
 
int main()
{
  int N;
  cin >> N;
  int a[N];
  map<int, int> b;
  rep(i,0,N)cin >> a[i];
  rep(i,0,N)b[a[i]] = 0;

  int i = 0;
  for (auto itr : b) {
    b[itr.first] += i;
    i++;
  }

  rep(i,0,N){
    cout << b[a[i]] << endl;
  }
  
  return 0;
}

Submission Info

Submission Time
Task C - 座圧
User Anko
Language Bash (GNU bash v4.3.11)
Score 0
Code Size 552 Byte
Status RE
Exec Time 11 ms
Memory 644 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 0 / 30 0 / 30 0 / 40
Status
RE × 10
RE × 11
RE × 30
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 RE 4 ms 580 KB
001.txt RE 4 ms 580 KB
002.txt RE 4 ms 584 KB
003.txt RE 4 ms 580 KB
004.txt RE 4 ms 580 KB
005.txt RE 4 ms 580 KB
006.txt RE 4 ms 580 KB
007.txt RE 4 ms 576 KB
008.txt RE 4 ms 580 KB
009.txt RE 4 ms 580 KB
010.txt RE 4 ms 580 KB
011.txt RE 4 ms 644 KB
012.txt RE 5 ms 584 KB
013.txt RE 5 ms 584 KB
014.txt RE 5 ms 588 KB
015.txt RE 4 ms 576 KB
016.txt RE 5 ms 580 KB
017.txt RE 4 ms 576 KB
018.txt RE 4 ms 588 KB
019.txt RE 5 ms 580 KB
020.txt RE 4 ms 580 KB
021.txt RE 4 ms 584 KB
022.txt RE 5 ms 584 KB
023.txt RE 4 ms 584 KB
024.txt RE 5 ms 576 KB
025.txt RE 11 ms 584 KB
026.txt RE 5 ms 580 KB
027.txt RE 4 ms 576 KB
028.txt RE 5 ms 584 KB
029.txt RE 5 ms 580 KB