Submission #2700504


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)

map<ll, ll>b;
ll a[100010];

int main()
{
  int N;
  cin >> N;
  
  
  rep(i,0,N){
    cin >> a[i];
    b[a[i]] = 0;
  }

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

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

Submission Info

Submission Time
Task C - 座圧
User Anko
Language C++14 (GCC 5.4.1)
Score 100
Code Size 558 Byte
Status AC
Exec Time 263 ms
Memory 7680 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 30 / 30 30 / 30 40 / 40
Status
AC × 10
AC × 11
AC × 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 AC 1 ms 256 KB
001.txt AC 3 ms 256 KB
002.txt AC 3 ms 256 KB
003.txt AC 3 ms 256 KB
004.txt AC 3 ms 256 KB
005.txt AC 3 ms 256 KB
006.txt AC 3 ms 256 KB
007.txt AC 3 ms 256 KB
008.txt AC 3 ms 256 KB
009.txt AC 3 ms 256 KB
010.txt AC 233 ms 4096 KB
011.txt AC 194 ms 1408 KB
012.txt AC 228 ms 3456 KB
013.txt AC 210 ms 2176 KB
014.txt AC 237 ms 5248 KB
015.txt AC 223 ms 3200 KB
016.txt AC 213 ms 2176 KB
017.txt AC 236 ms 5120 KB
018.txt AC 232 ms 6656 KB
019.txt AC 232 ms 4352 KB
020.txt AC 262 ms 7680 KB
021.txt AC 256 ms 5376 KB
022.txt AC 226 ms 2304 KB
023.txt AC 263 ms 6912 KB
024.txt AC 260 ms 7168 KB
025.txt AC 215 ms 1792 KB
026.txt AC 236 ms 2816 KB
027.txt AC 259 ms 5888 KB
028.txt AC 231 ms 2688 KB
029.txt AC 262 ms 7680 KB