Submission #3455712


Source Code Expand

#include <iostream>
using namespace std;
using ll = long long;
int main(){
  int N;
  cin >> N;
  int a[N];
  int y;

  int ans = 100000;
  for(int i = 0;i < N; i++){
    cin >> a[i];
    y = 0;
    if(a[i]%2 != 0){
        ans = 0;
        break;
    }
    for(int x = 2;x < 1000000000;x=x*2){
        if(a[i]%x == 0){
            y++;
        }else{
            if(y < ans){
            ans = y;
            break;
            }
        }
    }
  }
      cout << ans << endl;
    return 0;
}

Submission Info

Submission Time
Task B - Shift only
User a_ma_ne
Language C++14 (GCC 5.4.1)
Score 0
Code Size 523 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 12
WA × 1
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 1 ms 256 KB
2.txt AC 1 ms 256 KB
3.txt WA 1 ms 256 KB
4.txt AC 1 ms 256 KB
5.txt AC 1 ms 256 KB
6.txt AC 1 ms 256 KB
7.txt AC 1 ms 256 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB