Submission #1988293


Source Code Expand

#include<iostream>
#include<string>
#include<vector>
#include<math.h>
#include<map>
#include<algorithm>
#define rep(i,N) for(int i=0;i<(N);i++)
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
using namespace std;
const long long MOD = 1e9 + 7;
int main(void){
    int n,a,b;
    cin>>n;
    vector<int> v(n,0);
    rep(i,n){
        cin>>v[i];
    }
    int count=0;
    bool f=1;
    while(f){
        count++;
        bool f=1;
        rep(i,n){
            if(v[i]%2==0) v[i]/=2;
            else{
                count--;
                f=0;
                break;
            }    
        }
        if(f!=1) break;       
    }
    cout<<count<<endl;
    return 0;
}

Submission Info

Submission Time
Task B - Shift only
User seiyu0225
Language C++14 (GCC 5.4.1)
Score 200
Code Size 703 Byte
Status AC
Exec Time 1 ms
Memory 256 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 1 ms 256 KB
2.txt AC 1 ms 256 KB
3.txt AC 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