Submission #1185228


Source Code Expand

length = int(input())
target = set()
rep = []
first = []
for l in range(length):
    now = int(input())
    target |= {now}
    first.append(now)
for t in target:
    rep.append(t)
rep.sort()
ans = {}
# print(rep,first)
for i,r in enumerate(rep):
    ans[r] = i
for i in first:
    print(ans[i])

Submission Info

Submission Time
Task C - 座圧
User tomatohakase
Language PyPy3 (2.4.0)
Score 100
Code Size 313 Byte
Status AC
Exec Time 649 ms
Memory 71112 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 174 ms 38512 KB
001.txt AC 234 ms 42352 KB
002.txt AC 218 ms 41200 KB
003.txt AC 222 ms 41200 KB
004.txt AC 222 ms 41200 KB
005.txt AC 213 ms 41200 KB
006.txt AC 220 ms 41072 KB
007.txt AC 215 ms 41200 KB
008.txt AC 215 ms 41072 KB
009.txt AC 223 ms 41200 KB
010.txt AC 626 ms 63320 KB
011.txt AC 574 ms 54616 KB
012.txt AC 579 ms 61016 KB
013.txt AC 596 ms 56152 KB
014.txt AC 629 ms 61528 KB
015.txt AC 607 ms 60760 KB
016.txt AC 616 ms 56152 KB
017.txt AC 616 ms 61400 KB
018.txt AC 614 ms 61528 KB
019.txt AC 625 ms 61272 KB
020.txt AC 639 ms 71096 KB
021.txt AC 641 ms 61784 KB
022.txt AC 610 ms 56280 KB
023.txt AC 639 ms 62296 KB
024.txt AC 643 ms 70744 KB
025.txt AC 619 ms 55128 KB
026.txt AC 621 ms 56408 KB
027.txt AC 641 ms 61912 KB
028.txt AC 598 ms 56408 KB
029.txt AC 649 ms 71112 KB