Submission #3019832


Source Code Expand

import numpy as np

leng = int(input())
numList = []
num = np.array(numList)
for i in range(leng):
    sample = int(input())
    if not np.any(num==sample):
        numList.append(sample)
        num = np.array(numList)
print(num.shape[0])

Submission Info

Submission Time
Task ABC085B - Kagami Mochi
User fuukhndi
Language Python (3.4.3)
Score 200
Code Size 251 Byte
Status AC
Exec Time 156 ms
Memory 12508 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
Set Name Test Cases
Sample a01, a02, a03
All a01, a02, a03, b04, b05, b06, b07, b08, b09, b10, b11, b12, b13
Case Name Status Exec Time Memory
a01 AC 152 ms 12508 KB
a02 AC 151 ms 12508 KB
a03 AC 152 ms 12408 KB
b04 AC 151 ms 12408 KB
b05 AC 152 ms 12380 KB
b06 AC 153 ms 12252 KB
b07 AC 152 ms 12508 KB
b08 AC 152 ms 12508 KB
b09 AC 152 ms 12508 KB
b10 AC 152 ms 12380 KB
b11 AC 153 ms 12508 KB
b12 AC 156 ms 12248 KB
b13 AC 155 ms 12252 KB