Submission #3371233


Source Code Expand

import sys
stdin = sys.stdin
 
sys.setrecursionlimit(10**5) 
 
def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x)-1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip()
def lc(): return list(ns())
def ni(): return int(stdin.readline())
def nf(): return float(stdin.readline())

n = ni()
a = [ni() for _ in range(n)]

table = dict()

a_set = set(a)

for i, ai in enumerate(sorted(list(a_set))):
    table.update({ai: i})

for ai in a:
    print(table[ai])

Submission Info

Submission Time
Task C - 座圧
User polarbear08
Language Python (3.4.3)
Score 100
Code Size 632 Byte
Status AC
Exec Time 244 ms
Memory 26868 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 17 ms 3064 KB
001.txt AC 19 ms 3316 KB
002.txt AC 19 ms 3444 KB
003.txt AC 19 ms 3316 KB
004.txt AC 19 ms 3316 KB
005.txt AC 19 ms 3316 KB
006.txt AC 18 ms 3188 KB
007.txt AC 19 ms 3316 KB
008.txt AC 18 ms 3188 KB
009.txt AC 19 ms 3316 KB
010.txt AC 162 ms 13728 KB
011.txt AC 126 ms 7796 KB
012.txt AC 158 ms 13092 KB
013.txt AC 137 ms 8964 KB
014.txt AC 165 ms 16204 KB
015.txt AC 154 ms 12964 KB
016.txt AC 138 ms 9004 KB
017.txt AC 177 ms 16288 KB
018.txt AC 178 ms 16160 KB
019.txt AC 163 ms 16160 KB
020.txt AC 244 ms 26860 KB
021.txt AC 206 ms 16280 KB
022.txt AC 171 ms 9544 KB
023.txt AC 225 ms 16480 KB
024.txt AC 233 ms 26868 KB
025.txt AC 147 ms 8340 KB
026.txt AC 169 ms 9700 KB
027.txt AC 206 ms 16340 KB
028.txt AC 159 ms 9724 KB
029.txt AC 240 ms 26864 KB