Submission #3416281


Source Code Expand

N = int(input())
array = list(map(int, input().split()))

def calc_half(n):
    return n / 2

def temp(array, N, count=0):
    for i in range(N):
        if array[i] % 2 != 0:
            print(count)
            return
 
    temp(list(map(calc_half, array)), N, count+1)
            
temp(array, N)

Submission Info

Submission Time
Task ABC081B - Shift only
User shunsukw
Language Python (3.4.3)
Score 200
Code Size 313 Byte
Status AC
Exec Time 19 ms
Memory 3188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, 1.txt, 2.txt, 3.txt, 4.txt, 5.txt, 6.txt, 7.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
1.txt AC 17 ms 2940 KB
2.txt AC 17 ms 3060 KB
3.txt AC 19 ms 3188 KB
4.txt AC 17 ms 3060 KB
5.txt AC 18 ms 3188 KB
6.txt AC 19 ms 3188 KB
7.txt AC 17 ms 3060 KB
sample1.txt AC 17 ms 2940 KB
sample2.txt AC 17 ms 2940 KB
sample3.txt AC 17 ms 3060 KB