Submission #3402065


Source Code Expand

n = int(input())
a =[]
for _ in [0]*n :
  a += [int(input())]
b = list(set(a))
b.sort()
for k in range(len(b)):
  for i in range(n):
    if a[i] == b[k]:
      a[i] = k
for i in range(n):
  print(a[i])

Submission Info

Submission Time
Task C - 座圧
User minefy
Language Python (3.4.3)
Score 30
Code Size 212 Byte
Status TLE
Exec Time 2104 ms
Memory 13708 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 30 / 30 0 / 30 0 / 40
Status
AC × 10
AC × 1
TLE × 10
AC × 10
TLE × 20
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 94 ms 3188 KB
002.txt AC 168 ms 3316 KB
003.txt AC 127 ms 3188 KB
004.txt AC 129 ms 3316 KB
005.txt AC 100 ms 3188 KB
006.txt AC 23 ms 3188 KB
007.txt AC 154 ms 3316 KB
008.txt AC 19 ms 3188 KB
009.txt AC 128 ms 3188 KB
010.txt TLE 2104 ms 9628 KB
011.txt TLE 2104 ms 7848 KB
012.txt TLE 2104 ms 9608 KB
013.txt TLE 2104 ms 7832 KB
014.txt TLE 2104 ms 9628 KB
015.txt TLE 2104 ms 9604 KB
016.txt TLE 2104 ms 7828 KB
017.txt TLE 2104 ms 9624 KB
018.txt TLE 2104 ms 9604 KB
019.txt TLE 2104 ms 9628 KB
020.txt TLE 2104 ms 13704 KB
021.txt TLE 2104 ms 9608 KB
022.txt TLE 2104 ms 7840 KB
023.txt TLE 2104 ms 9608 KB
024.txt TLE 2104 ms 13708 KB
025.txt TLE 2104 ms 7816 KB
026.txt TLE 2104 ms 7836 KB
027.txt TLE 2104 ms 9608 KB
028.txt TLE 2104 ms 7840 KB
029.txt TLE 2104 ms 13708 KB