Submission #7992627


Source Code Expand

#入力を受け取る
N = int(input())
X = list(map(int, input().split()))
#出力とwhileの準備
count = 0
goal = True
#whileがTrueなら
while goal:
    #整数の数だけ繰り返す。
    for i in range(N):
        if X[i] % 2 == 0:
            X[i] = X[i] / 2
        else:
            goal = False
            break
    if goal:
        count += 1

print(count)

Submission Info

Submission Time
Task ABC081B - Shift only
User Tanty
Language Python (3.4.3)
Score 200
Code Size 391 Byte
Status AC
Exec Time 24 ms
Memory 3060 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 2940 KB
3.txt AC 19 ms 3060 KB
4.txt AC 24 ms 2940 KB
5.txt AC 19 ms 3060 KB
6.txt AC 19 ms 2940 KB
7.txt AC 17 ms 2940 KB
sample1.txt AC 17 ms 2940 KB
sample2.txt AC 17 ms 3060 KB
sample3.txt AC 17 ms 3060 KB