Submission #72341373


Source Code Expand

n = int(input())
T = list(map(int, input().split()))

t = []
i = 1
for c in T:
    t.append((c, i))
    i += 1

t.sort()
for i in range(3):
    print(t[i][1], end=" ")

Submission Info

Submission Time
Task B - Trifecta
User dokinami
Language Python (PyPy 3.11-v7.3.20)
Score 200
Code Size 180 Byte
Status AC
Exec Time 54 ms
Memory 79928 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 2
AC × 10
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
random_01.txt AC 53 ms 79836 KiB
random_02.txt AC 54 ms 79708 KiB
random_03.txt AC 53 ms 79928 KiB
random_04.txt AC 53 ms 79836 KiB
random_05.txt AC 53 ms 79612 KiB
random_06.txt AC 52 ms 79612 KiB
random_07.txt AC 52 ms 79824 KiB
random_08.txt AC 53 ms 79740 KiB
sample_01.txt AC 53 ms 79416 KiB
sample_02.txt AC 52 ms 79804 KiB